{
  "$type": "site.standard.document",
  "bskyPostRef": {
    "cid": "bafyreidcxuhgf6urdkvjtypdwvzoksn2zl4odr6edzaq6vq43gbve27mka",
    "uri": "at://did:plc:ws6dhxzqnqxu5aqxt4kd27oc/app.bsky.feed.post/3mnhxxw6ljjr2"
  },
  "coverImage": {
    "$type": "blob",
    "ref": {
      "$link": "bafkreiduc6trm4dxye2l5idrylaclnh65zlqzew6c3cyjlbmhkbcwyvmoe"
    },
    "mimeType": "image/webp",
    "size": 75214
  },
  "description": "The exact DISM, PowerShell, and Registry methods to toggle Windows 11's reserved disk space and confirm the change worked.",
  "path": "/turn-reserved-storage-on-or-off-in-windows-11-to-reclaim-7gb/",
  "publishedAt": "2026-06-04T15:49:00.000Z",
  "site": "https://allthings.how",
  "tags": [
    "storage settings support page"
  ],
  "textContent": "Reserved Storage sets aside a slice of your drive (usually around 7GB) so Windows always has room for updates, temporary files, system caches, and app data. It keeps disk usage predictable and stops feature updates from stalling on machines that are nearly full. Windows manages it automatically, but if you are squeezed for space you can switch it off, and you can switch it back on later.\n\n⚡\n\nQuick answer: Open Terminal as administrator, then run DISM /Online /Set-ReservedStorageState /State:Disabled to turn it off or DISM /Online /Set-ReservedStorageState /State:Enabled to turn it on, then reboot.\n\n* * *\n\n## What Reserved Storage does on Windows 11\n\nWhen apps and system processes generate temporary files, those files land in the reserved space instead of eating into your free user space. Because the room is already set aside, the device runs more reliably and Storage Sense can clear out anything that is no longer needed. If the reserve ever fills up, Windows keeps working and temporarily borrows space outside the reserve.\n\nUpdates lean on this space first. Every update needs free room to download, extract, and install, so on a device with Reserved Storage the unneeded temporary OS files are wiped and the full reserve is used for the update. That lets most PCs update even when free space is tight. Microsoft details how this works on its storage settings support page.\n\nThe reserve starts around 7GB but its size shifts over time based on how you use the machine. Two things push it larger. Installing optional features makes Windows grow the reserve so those features survive updates, and adding extra display languages does the same. Removing optional features or languages you don't use is the safest way to shrink the reserve without disabling it.\n\nOne important detail: Reserved Storage is only switched on automatically for PCs that ship with Windows pre-installed or for clean installs. If you upgraded from an older Windows version, it may never have been enabled. If you don't see it listed, the device may have limited disk space or it isn't a fresh install.\n\n* * *\n\n## Check whether Reserved Storage is enabled\n\nBefore changing anything, confirm the current state. You need to be signed in as an administrator for every method below.\n\n**Step 1:** Press `Win + X` and choose **Terminal (Admin)**. Approve the User Account Control prompt.\n\n**Step 2:** Run the command that matches your shell. In Command Prompt use `DISM /Online /Get-ReservedStorageState`. In Windows PowerShell use `Get-WindowsReservedStorageState`.\n\n**Step 3:** Read the output. It reports the state as either **Enabled** (the default) or **Disabled**. Enabled means the reserve is active; disabled means it has already been turned off.\n\nYou can also confirm it visually. Open **Settings > System > Storage**, click **Show more categories** (or open **Advanced storage settings**), select your Windows drive, then open **System & reserved**. The **Reserved storage** figure shows how much space is set aside on that drive.\n\n* * *\n\n## Enable or disable Reserved Storage with DISM\n\nDISM (Deployment Image Servicing and Management) is the official command-line tool for this, and it is the fastest, scriptable route. It talks directly to the reserve manager to flip the state on a running system.\n\n**Step 1:** Open **Terminal (Admin)** and switch to the **Command Prompt** tab if it isn't already active.\n\n**Step 2:** To turn the reserve off, run `DISM /Online /Set-ReservedStorageState /State:Disabled`. To turn it back on, run `DISM /Online /Set-ReservedStorageState /State:Enabled`.\n\n**Step 3:** Restart the PC. The change generally takes effect right away, but the freed space may not show as reclaimed until after one or two reboots.\n\n🧹\n\nAfter disabling, run Disk Cleanup (cleanmgr) and select Windows Update Cleanup under system files to reclaim space that may otherwise linger.\n\n* * *\n\n## Use PowerShell to toggle Reserved Storage\n\nPowerShell offers a dedicated cmdlet, which is handy for scripted or large-scale deployments.\n\n**Step 1:** Open **Terminal (Admin)** and switch to the **Windows PowerShell** tab.\n\n**Step 2:** Run `Set-WindowsReservedStorageState -State Disabled` to turn it off or `Set-WindowsReservedStorageState -State Enabled` to turn it on.\n\n**Step 3:** Reboot the machine. You can restart from PowerShell with `Restart-Computer -Force`.\n\n* * *\n\n## Edit the Registry to control Reserved Storage\n\nThe same setting lives in the Registry under a single DWORD. This route works for automation and policy deployment, but a wrong edit can cause boot or stability problems, so export the key first using **File > Export** in Registry Editor.\n\n**Step 1:** Press `Win + R`, type `regedit`, and press `Ctrl + Shift + Enter` to open it as administrator.\n\n**Step 2:** Navigate to `Computer\\HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ReserveManager`.\n\n**Step 3:** Double-click the **ShippedWithReserves** DWORD. Set it to **1** to enable Reserved Storage or **0** to disable it. If the value doesn't exist, right-click the right pane and create a new **DWORD (32-bit) Value** with that name.\n\n**Step 4:** Close Registry Editor and reboot so the change applies.\n\n⚠️\n\nOn some existing installs, disabling Reserved Storage cannot be cleanly re-enabled through the Registry alone. If that happens, use the DISM enable command. Create a system restore point before editing.\n\nYou can apply the same change with a `.reg` file for one-click deployment. Save a file with the lines below (file type set to **All Files**), then right-click and run it as administrator.\n\n\n    Windows Registry Editor Version 5.00\n    [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ReserveManager]\n    \"ShippedWithReserves\"=dword:00000000\n\n\nDisable Reserved Storage\n\n\n    Windows Registry Editor Version 5.00\n    [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ReserveManager]\n    \"ShippedWithReserves\"=dword:00000001\n\n\nEnable Reserved Storage\n\n* * *\n\n## Confirm the change and fix common errors\n\nTo verify, re-run the status check. After disabling, open **Settings > System > Storage > System & reserved** and the **Reserved storage** entry will no longer appear once the refresh completes. After enabling, the reserve reapplies and shows up again in Settings after Windows installs its next new build through Windows Update.\n\nIf a command fails, the cause is usually one of a few specific things.\n\nError or symptom| Why it happens| What to do\n---|---|---\nError: 87, the Set-ReservedStorageState option is unknown| Running on a build older than Windows 10 v2004, or a damaged image| Run DISM with the cleanup-image option, then retry. The same applies to Get-ReservedStorageState.\n\"This operation is not supported when reserved storage is in use\"| A servicing or update operation is active| Wait for any update or servicing task to finish, then run the command again.\nUpdate fails with 0x80070070 after disabling| Disk space ran low without the reserve as a buffer| Re-enable with `DISM /Online /Set-ReservedStorageState /State:Enabled`.\nSpace not reclaimed after disabling| Cleanup not yet run| Run `cleanmgr`, pick Windows Update Cleanup, then reboot.\n\nThe commands only work on online images, meaning a running Windows PC, not offline images. Reserved Storage cannot be removed from the OS entirely, but trimming optional features and unused languages reduces its footprint. For most people the feature is worth keeping on, since it protects update reliability. Disabling it makes sense mainly when you are genuinely tight on disk space or building lean images for thin clients and virtual desktops, where you can re-enable it on critical systems afterward.",
  "title": "Turn Reserved Storage on or off in Windows 11 to reclaim ~7GB",
  "updatedAt": "2026-06-04T15:49:01.460Z"
}