Why the Recovery Partition Grows With Every Feature Update on Windows 11
🔍 WiseChecker

Why the Recovery Partition Grows With Every Feature Update on Windows 11

You may notice your Windows 11 device has less free disk space after installing a feature update. The Recovery partition, a hidden section on your drive, often increases in size after each major update. This happens because Windows creates a new recovery image during the update process while retaining the old one. This article explains why the Recovery partition grows, what Microsoft’s design choices cause this, and how you can manage the space.

Key Takeaways: Why the Recovery Partition Grows After Feature Updates

  • Windows 11 feature updates rebuild the recovery image (winre.wim): Each update creates a new copy of the recovery tools, and the old copy is not always deleted, causing partition expansion.
  • The Recovery partition is separate from the main OS partition: It stores the Windows Recovery Environment (WinRE) and cannot be resized automatically by the OS during updates.
  • reagentc /info command in Command Prompt (Admin): Displays the current location and size of the WinRE image, helping you identify if the partition has grown.

ADVERTISEMENT

How Windows 11 Feature Updates Affect the Recovery Partition

The Recovery partition is a small, hidden partition created during Windows 11 installation. It contains the Windows Recovery Environment (WinRE), a set of tools for troubleshooting boot failures, restoring the system, and resetting the PC. The partition is typically 500 MB to 1 GB in size on a fresh install.

When you install a feature update, such as Windows 11 23H2 or 24H2, Windows must update the WinRE image to match the new OS version. The update process downloads a new winre.wim file and places it in the Recovery partition. However, Windows does not always delete the previous version of this file. Over multiple updates, the partition can grow to 2 GB, 3 GB, or more.

The primary reason for this growth is that the Windows Setup component does not automatically shrink or compact the Recovery partition after replacing the WinRE image. The partition table remains unchanged, and the unused space from old images accumulates. This is a design trade-off: Microsoft prioritizes update reliability over disk space management. Deleting the old image during an active update could cause a recovery failure if the new image is corrupted.

What Happens During a Feature Update

During a feature update, the following sequence occurs:

  1. Update downloads and stages
    Windows downloads the new OS files, including a new winre.wim image, into a temporary folder on the main partition.
  2. WinRE image is replaced
    The new winre.wim is copied to the Recovery partition, overwriting the existing file if space allows. If the partition lacks room, Windows may expand the partition using unallocated space next to it.
  3. Old image may remain
    In some cases, the old winre.wim is not removed immediately. The partition retains both images until a future cleanup operation runs, which may not happen automatically.

Steps to Check the Recovery Partition Size and Clean Up Unused Space

You can verify the current size of the Recovery partition and reclaim disk space by using built-in Windows tools. Follow these steps to inspect and reduce the partition size.

Step 1: Check the Recovery Partition Size Using Disk Management

  1. Open Disk Management
    Right-click the Start button and select Disk Management. Alternatively, press Win + X and choose Disk Management.
  2. Locate the Recovery partition
    Scroll down the list of volumes. Look for a partition labeled Recovery or that has the Recovery type in the Status column. It is typically a small partition at the end of the drive.
  3. Note the size
    Read the Capacity column. A healthy Recovery partition is usually under 1 GB. If it shows 2 GB or more, it has grown due to feature updates.

Step 2: Use Command Prompt to View the WinRE Image Location

  1. Open Command Prompt as administrator
    Press Win + R, type cmd, then press Ctrl + Shift + Enter. Click Yes in the User Account Control prompt.
  2. Run the reagentc command
    Type reagentc /info and press Enter. The output shows the Windows RE location, which is the path to the WinRE image. It may be on a separate partition.
  3. Interpret the output
    If the location shows a path like \?\GLOBALROOT\device\harddisk0\partition4\Recovery\WindowsRE, the image resides on the Recovery partition. The RE status should say Enabled.

Step 3: Reclaim Space by Removing Old WinRE Images

Windows does not include a built-in tool to automatically shrink the Recovery partition. However, you can reduce its size by disabling WinRE, deleting the image, and re-enabling it. This forces Windows to create a fresh, compact WinRE image.

  1. Disable WinRE
    In the same Command Prompt window, type reagentc /disable and press Enter. This removes the current WinRE image and disables recovery boot options.
  2. Delete the Recovery partition contents
    Open Disk Management. Right-click the Recovery partition and select Change Drive Letter and Paths. Temporarily assign a drive letter, such as R:. Then, in File Explorer, open the drive and delete all files in the Recovery folder. Remove the drive letter afterward.
  3. Shrink the partition
    In Disk Management, right-click the Recovery partition and select Shrink Volume. Enter the amount of space to shrink, leaving at least 500 MB for the new WinRE image. Click Shrink.
  4. Enable WinRE
    Return to the Command Prompt and type reagentc /enable. Windows creates a new WinRE image on the now-smaller Recovery partition.
  5. Verify the new size
    Run reagentc /info again to confirm the RE status is Enabled. Check Disk Management to see the reduced partition size.

ADVERTISEMENT

Common Issues When Managing the Recovery Partition on Windows 11

The Recovery Partition Cannot Be Shrunk Because of a Page File or Hibernation File

If the Shrink Volume option is grayed out or shows a very small available shrink space, the partition may contain unmovable files, such as the page file or hibernation file. Disable hibernation by running powercfg /h off in an admin Command Prompt, then try shrinking again. Re-enable hibernation afterward if needed.

WinRE Fails to Re-enable After Deleting the Recovery Partition

If reagentc /enable returns an error, the Recovery partition may be missing or too small. Ensure the partition has at least 500 MB of free space. If the partition was deleted entirely, create a new one using DiskPart: run diskpart, select the disk, create a primary partition of 1 GB, format it as NTFS, assign a label Recovery, then run reagentc /enable.

Feature Update Fails to Install Because the Recovery Partition Is Too Full

If a feature update fails with error code 0x800f0922, the Recovery partition may lack space for the new WinRE image. Use the steps in Section 4 to shrink the partition or free up space. Alternatively, run dism /online /cleanup-image /startcomponentcleanup in an admin Command Prompt to remove old component store files, which may indirectly help.

Recovery Partition Growth: Automatic vs Manual Recovery Image Management

Item Automatic Management (Default) Manual Management (User-Initiated)
Image update during feature update Windows replaces the WinRE image, but old files may remain User disables and re-enables WinRE to force a clean image
Partition resizing Windows expands the partition if needed but does not shrink it User manually shrinks the partition using Disk Management or DiskPart
Disk space impact Accumulates unused space over multiple updates Recovers space by removing old images and reducing partition size
Risk of recovery failure Low – old image remains as fallback Moderate – user must ensure new image is created successfully
Recommended for Most users who do not need to reclaim disk space Users with limited disk space or those who monitor partition sizes

The Recovery partition on Windows 11 grows with each feature update because Windows prioritizes update reliability over disk space. By using the reagentc command and Disk Management, you can shrink the partition and remove old WinRE images. Check the partition size after each major update to prevent unnecessary disk usage. For ongoing maintenance, consider running reagentc /disable and reagentc /enable once a year to keep the recovery image compact.

ADVERTISEMENT