Quick fix: Open Registry Editor (Admin). Navigate to HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager. Set ShippedWithReserves to 0. Reboot. Reserved Storage disables; ~7GB+ freed. Updates still install but may temporarily use C: drive space during installation instead of reserved.
Reserved Storage allocates ~7GB on Windows 11 specifically for updates, system cache, temporary files. Reduces disk space needed for updates by reserving in advance. On small SSDs, disable to reclaim space.
Affects: Windows 11.
Fix time: ~5 minutes.
What causes this
Reserved Storage was added in Windows 10 1903+. It pre-allocates ~7GB on C: drive. Purpose: ensure space for updates, app installs, temporary files. On 64GB-128GB SSD systems, that’s significant. Disabling reclaims space; trade-off is occasional update issues if C: is critically low.
Method 1: Disable via Registry
The standard route.
- Open Registry Editor as Admin.
- Navigate to:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager. - Find DWORD: ShippedWithReserves. Default: 1.
- Right-click → Modify. Change Value Data to 0.
- OK.
- Find DWORD: BaseHardReserveSize. May exist.
- Right-click each → Modify if needed.
- Close Registry Editor.
- Reboot.
- After reboot: Reserved Storage disabled. Disk space freed.
- Verify: Settings → System → Storage. Look at System & reserved — should decrease.
This is the standard fix.
Method 2: Use DISM to disable
For command-line approach.
- Open Command Prompt as Admin.
- Disable Reserved Storage:
DISM.exe /Online /Set-ReservedStorageState /State:Disabled - To re-enable later:
DISM.exe /Online /Set-ReservedStorageState /State:Enabled. - Check current state:
DISM.exe /Online /Get-ReservedStorageState. Returns Disabled / Enabled. - Reboot.
- For confirming actual free space:
fsutil volume querycluster C: 0— check cluster info. - Disk space freed becomes available for normal use.
- Future updates: still install but may need temporary space; Windows handles.
This is the DISM route.
Method 3: Use Storage Settings
For GUI users.
- Open Settings → System → Storage → Advanced storage settings → Storage Sense.
- This doesn’t directly disable Reserved Storage, but configures cleanup.
- For viewing what reserved storage holds: Storage → System & reserved → click for breakdown.
- Shows: Windows, Reserved storage, Virtual memory, Hibernation file, System restore.
- To reduce specific items:
- Hibernation: disable via
powercfg /hibernate off. - Virtual memory: configure custom size in System Properties.
- System Restore: reduce allocation in System Protection.
- Hibernation: disable via
- Reserved Storage itself: only registry / DISM disables.
- Combined cleanup with Reserved disable can free 15-25GB on small drives.
This is the holistic approach.
How to verify the fix worked
- Settings → System → Storage → System & reserved shows less space used.
DISM.exe /Online /Get-ReservedStorageStatereturns Disabled.- C: drive free space increased ~7GB+.
- Registry value ShippedWithReserves = 0.
If none of these work
If disabled doesn’t free space immediately: Reserved space gets reclaimed gradually: as Windows clears caches and uses space. Wait 24 hours. Cumulative update reverts: Microsoft may re-enable. Re-disable after major updates. For updates failing due to low space: re-enable reserved storage temporarily for big updates: DISM.exe /Online /Set-ReservedStorageState /State:Enabled. Then disable after. For chronic disk pressure: consider bigger SSD. 256GB minimum recommended for Win11. For Surface devices: tight on space. Reserved disable may help marginally. For Group Policy enforcing: corporate-managed PCs may have policy. Check. For dual-boot setups: shared partition complicates Reserved Storage management. Last resort: clean install: fresh Win11 install lets you skip Reserved during setup (older option may be removed in newer Win11).
Bottom line: DISM.exe /Online /Set-ReservedStorageState /State:Disabled in Admin cmd. Or registry: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager\ShippedWithReserves = 0. Reboot. ~7GB freed. Updates still install but may use C: drive space.