What's Taking Up Space on My C: Drive? Windows 11 Cleanup Guide
C: drive full? Find what's using the space and safely free up gigabytes in Windows 11 — Storage settings, Disk Cleanup, WinSxS, hibernation, restore points and the folders that quietly grow.
By Zeeshan Khalid · Updated 26 September 2026
"Your C: drive is running out of space" is one of the most common Windows warnings — and Windows is famously bad at telling you why. File Explorer doesn't even show folder sizes.
This guide works from the safest, biggest wins down to the more technical ones. Most people get back 10–50 GB in the first three steps.
Step 1: See the breakdown in Storage settings
Open Settings → System → Storage. Windows shows a breakdown by category — Apps & features, Temporary files, Documents, Pictures, Other. Click Show more categories to see everything.
While you're here, turn on Storage Sense. It automatically clears temporary files and can empty the Recycle Bin and Downloads folder on a schedule you set.
Step 2: Clear temporary files and cleanup recommendations
Still in Settings → System → Storage:
- Click Temporary files. Tick:
- Windows Update Cleanup — often several GB after big updates
- Temporary files, Delivery Optimization Files, Thumbnails
- Recycle Bin
- Leave "Downloads" unticked unless you've checked it — it deletes your entire Downloads folder.
- Click Remove files.
Then open Cleanup recommendations — Windows lists large files, unused apps and files synced to the cloud that you could remove.
Classic alternative: type cleanmgr in Start, choose C:, then click Clean up system files. This version also offers Previous Windows installation(s) (up to 20+ GB after a feature upgrade — but it removes your ability to roll back).
Step 3: Find the large folders and files
The categories only get you so far. To find specific culprits:
- Use the free folder size analyzer on your user folder (
C:\Users\YourName). It shows size per subfolder, per file type and your 50 largest files — without uploading anything. - Or in File Explorer, open a folder, type
size:>1GBin the search box, and sort the results by size.
The usual suspects
| Location | What grows there | What to do |
|---|---|---|
Downloads | Installers, ISOs, zips already extracted | Delete what you've installed or extracted |
Videos, Pictures | Phone imports, screen recordings | Move to an external drive or cloud |
AppData\Local\Temp | Leftover temp files | Covered by Temporary files (Step 2) |
AppData\Local browsers | Chrome/Edge caches, service workers | Clear from browser settings |
AppData\Roaming | Teams, Slack, Discord, WhatsApp media | Clear cache in each app |
Documents\Outlook Files | Huge .pst/.ost mailboxes | Archive old mail |
| Game libraries | Steam, Epic, Xbox games (50–150 GB each) | Uninstall or move the library |
| Developer folders | node_modules, Docker images, virtual envs | Prune (docker system prune) |
| Duplicates | Copies in several folders | See finding duplicate files |
Step 4: Uninstall apps and games you don't use
Settings → Apps → Installed apps, then sort by Size. Games and creative suites are usually at the top. Also check launchers (Steam, Epic, EA) — they often let you move a game to another drive instead of reinstalling.
Step 5: The hidden system space
These are safe when done through the proper commands — never by deleting files manually.
System Restore points
Restore points can use 5–15% of the drive. Control Panel → System → System protection → Configure: lower the Max Usage slider (5% is plenty), or click Delete to remove all points. Create a fresh restore point afterwards.
Hibernation file
hiberfil.sys is typically 40% of your RAM size — about 6 GB on a 16 GB PC. If you never use Hibernate, open Terminal (Admin) and run:
powercfg /h off
This also disables Fast Startup. Sleep still works normally.
WinSxS component store
C:\Windows\WinSxS looks enormous but is mostly hard links (it's smaller than Explorer reports). You can safely trim superseded components with:
Dism.exe /Online /Cleanup-Image /StartComponentCleanup
Run it from Terminal (Admin). It can take 10+ minutes. Don't delete anything in WinSxS by hand.
Step 6: Move data off C:
If C: is a small SSD, move bulky personal folders to a larger drive:
- Right-click Documents (or Pictures, Videos, Downloads) in File Explorer → Properties → Location tab.
- Click Move, choose a folder on the other drive, and confirm moving existing files.
OneDrive: right-click large folders → Free up space. Files stay visible and download when opened. Also check Settings → System → Storage → Advanced storage settings → Where new content is saved to put new apps and media on another drive.
What not to do
- Don't delete anything in
C:\Windows,Program FilesorSystem32by hand. - Don't delete
pagefile.sys. Windows needs it. - Don't run "registry cleaners" or all-in-one "PC optimizers" — they free little space and cause real problems.
- Don't compress your whole C: drive with NTFS compression to "save space" — it slows the system for modest gains.
Seeing the whole drive at a glance
For a visual answer — every folder drawn as a block sized by the space it uses — a treemap analyzer is the fastest way to find surprises. I built DiskAtlas Pro for this: it scans a drive into an interactive treemap, lists the largest files by size and age, finds verified duplicates, suggests safe cleanups (and selects nothing for you), refuses to touch system folders, and lets you save a snapshot and compare later to see exactly what grew. It makes no network connections at all.
The steps above will get most PCs back into healthy territory without it, though.
Frequently asked questions
- Is it safe to delete files in the Windows folder?
- Not manually. Use Settings → Storage → Temporary files, Disk Cleanup's 'Clean up system files', or the DISM component cleanup command. Deleting files from C:\Windows by hand can stop Windows from booting or updating.
- How much free space does Windows 11 need?
- Keep at least 15–20% of the drive free, and never less than about 20 GB. Windows needs room for updates, the page file and temporary files; below that, updates fail and the PC slows down.
- Why does my C: drive keep filling up by itself?
- Common causes are Windows Update caches, System Restore points, browser and app caches, OneDrive files set to 'always keep on this device', game updates and growing email or chat app data.
- Can I delete hiberfil.sys?
- Not directly, but running 'powercfg /h off' as administrator turns off hibernation and removes it, freeing several gigabytes. You lose hibernate and Fast Startup; sleep still works.