← BACK TO FEED

How to Free Up 10–15 GB of Storage on Windows Without Deleting Files

Is your Windows laptop constantly running out of C: drive space? Learn how a hidden system service called Shadow Copy (VSS) might be hoarding gigabytes of space, and how to safely reclaim it using administrative Command Prompt commands.

Is your Windows laptop constantly running out of storage space, forcing you to delete personal photos, videos, or uninstall applications?

There’s a built-in Windows feature called System Protection / Shadow Copy (VSS) that can quietly consume tens of gigabytes of disk space behind the scenes. In many cases, simply adjusting the maximum storage limit reserved for shadow copies instantly frees up 10 to 15 GB (or more) on your main C: drive — without touching a single personal file!

Interactive Simulator: Shadow Storage Calculator

Use the sliders below to simulate how Windows Shadow Copy storage allocation works and calculate how much disk space you can instantly reclaim:

VSSAdmin Storage Inspector & Simulator
Command Prompt Simulator
Current Shadow Copy Allocated: 20 GB
New Desired MaxSize Limit: 5 GB
C:\Windows\System32> vssadmin list shadowstorage
vssadmin 1.1 - Volume Shadow Copy Service administrative command-line tool (C) Copyright 2001-2026 Microsoft Corp. Shadow Copy Storage association For volume: (C:)\\?\Volume{a1b2c3d4-0000-0000-0000-000000000000}\ Shadow Copy Storage volume: (C:)\\?\Volume{a1b2c3d4-0000-0000-0000-000000000000}\ Used Shadow Copy Storage space: 14.2 GB Allocated Shadow Copy Storage space: 20.0 GB Maximum Shadow Copy Storage space: 20.0 GB (8%)
Drive Storage Allocation Impact: Reclaimable Space: 15.0 GB!

How to Check & Reduce Shadow Copy Storage

Ready to free up storage on your PC? Follow these quick steps using Windows Command Prompt:

01

Open Command Prompt as Administrator

1. Search for CMD or Command Prompt in the Windows Start menu.
2. Right-click on Command Prompt.
3. Click Run as administrator (select Yes if prompted by User Account Control).

02

Check Current Shadow Copy Usage

In the Command Prompt window, type or copy the command below and press Enter:

vssadmin list shadowstorage

Windows will display a diagnostic report showing three key numbers: Used Space, Allocated Space, and Maximum Space. If the maximum space is set to a large amount (e.g., 20 GB – 50 GB), your system is reserving that disk area specifically for restore points.

03

Reduce Shadow Storage MaxSize Limit

If shadow storage is consuming a large portion of your C: drive, execute the resize command to set a new upper boundary (such as 5 GB):

vssadmin resize shadowstorage /For=C: /On=C: /MaxSize=5GB

Press Enter. You will receive a confirmation message: Successfully resized the shadow copy storage association. Open File Explorer immediately to see your free C: drive space increase!

Important: Restore Point Retention

The amount of disk space you can safely reclaim depends on your current System Protection configuration and how much space Windows is currently using for system restore points. Reducing shadow-copy storage can cause older restore points to be automatically deleted when Windows needs to stay within the new size limit. Always check your current shadow-storage usage before setting a very low limit!

Will This Delete My Personal Files?

No. This command does not directly delete your documents, photos, videos, downloads, music, or installed desktop applications.

However, changing the shadow-copy storage limit will purge older System Restore points if they no longer fit within the newly configured limit. If you frequently rely on System Restore to roll back driver updates or system tweaks, consider keeping an appropriate allocation (e.g., 5 GB – 10 GB) rather than setting an unnecessarily tiny cap.

Frequently Asked Questions (FAQ)

What is Shadow Copy (VSS) in Windows 10 and 11?
Volume Shadow Copy Service (VSS) is a background subsystem in Microsoft Windows that creates backup copies or snapshots of computer files or volumes, even while they are in use. It is used primarily by System Restore and third-party backup software.
Is setting MaxSize=5GB safe for daily laptop use?
Yes, 5 GB is more than enough for Windows to maintain 2 to 3 recent system restore points. This strikes an optimal balance between system rollback safety and free C: drive disk space.
How can I undo this command or allocate more space later?
You can increase the shadow storage ceiling at any time by running the command with a higher limit, for example: vssadmin resize shadowstorage /For=C: /On=C: /MaxSize=15GB.
What else should I clean if C: drive is still full?
If your drive remains full, check Windows Storage Sense (Settings → System → Storage), clean the %temp% folder, run Windows Disk Cleanup (cleanmgr) for system updates cleanup, or check large hidden folders with WinDirStat or WizTree.

Final Thoughts

If your Windows C: drive is nearly full and throwing low-disk warning popups, checking your Shadow Copy allocation is one of the most effective troubleshooting steps before manually deleting important files.

Quick Reference Commands: vssadmin list shadowstorage vssadmin resize shadowstorage /For=C: /On=C: /MaxSize=5GB

Share this guide with a friend or colleague whose Windows PC is constantly running out of storage space!

More Windows Optimization Guides from Livecodo