Skip to content

What is safe to delete on Windows, in one list

A verdict on every folder people ask about, from definitely safe to never, with the reason for each.

7 min read

Most Windows cleanup advice tells you where space is. The harder question is which of it you can remove without consequence, and on Windows the answer is genuinely different per folder.

Definitely safe

WhatWhyMore
The Recycle Bin, on every driveYou already decidedPer drive bins
%TEMP% contentsTemporary by definitionTemp files
Windows.old, through SettingsThe previous installWindows.old
Update caches, through SettingsAlready installedUpdate caches
Crash dumps and error reportsRecords of past failuresCrash dumps
Browser cachesRebuilt as you browseChrome on Windows
Build output and dependency foldersRebuilt by a buildnode_modules

Safe with one check first

  • The hibernation file, if you never hibernate and accept losing Fast Startup.
  • Restore points, keeping the most recent.
  • Old driver packages, via pnputil or Disk Cleanup.
  • Superseded component store packages, via DISM only.
  • Downloads, once you have looked at what is in there.

Not safe without understanding what it is

WhatRisk
C:\Windows\InstallerUninstalling and repairing stop working
WinSxS, by handWindows cannot update or repair itself
AppData\RoamingApplication settings and, often, your data
ProgramDataShared application data and licences
.pst filesMail archives that exist only on that PC
A game's userdata or save folderLocal saves with no cloud copy

Never

  1. C:\Windows\System32 and its neighbours.
  2. The recovery partition.
  3. pagefile.sys and swapfile.sys, which Windows manages.
  4. System Volume Information, which holds restore data.
  5. Anything you cannot identify, in a folder you cannot identify.

The rule that covers everything not listed

If it can be downloaded again, rebuilt again or synced again, it is safe. If it exists only on this PC, it is not. Almost every mistake in this category comes from assuming a folder is the first kind when it is the second.

Common questions

What is always safe to delete on Windows?

The Recycle Bin, temporary files, Windows.old through Settings, update caches, crash dumps, browser caches and build output. All are either already discarded or regenerated.

What should I never delete on Windows?

System32 and the Windows folder's components, the recovery partition, the page file, System Volume Information, and anything you cannot identify. Most of it is protected anyway.

Is it safe to delete AppData?

Not as a whole. Roaming holds application settings and often your data. Specific cache folders inside AppData\Local are the safe version of the idea.

What is the general rule for safe deletion on Windows?

If it can be downloaded, rebuilt or synced again, it is safe. If it exists only on this PC, it is not, and that covers almost every folder people ask about.

Read next