How to Resize the Recovery Partition on Windows 10/11.
In some cases, there is a need to resize the Recovery Partition in Windows 10/11. This tutorial provides step-by-step instructions to achieve that.
The Windows Recovery Partition (also known as "Windows RE Partition") is a hidden partition on your disk where all the necessary files for the Windows Recovery Environment (WinRE) are stored.
Starting June 27, 2023, Microsoft began updating WinRE using the monthly cumulative update. However, on some computers, the update may fail with error 0x80070643 if the recovery partition is not large enough to complete the update.
To help users resolve Windows Update issues related to insufficient recovery partition size, this article provides instructions to manually resize the recovery partition without using a third-party partition resize tool.
- Related Article: FIX: KB5034441 Update error 0x80070643 on Windows 10 22H2.
How to Increase the Size of the Recovery Partition on Windows 10/11.
Step 1. Disable the Windows Recovery Environment.
In order to resize or re-create the Recovery Partition, you must first disable the Windows Recovery Environment (WinRE). To do this:
- Open Command Prompt as Administrator and give the following command to check if the Windows Recovery Environment (WinRE) is enabled on the machine:
reagentc /info
- Now, according to the WinRE status, proceed as follows:
A. If the Windows RE Status is Enabled (as shown in the screenshot below), give the following command to disable the WinRE and continue to Step-2:
reagentc /disable
* Note: When WinRE is enabled, you should see "Windows RE status: Enabled" and in "Windows RE location" the path of the WinRE files on the Recovery partition (e.g., "\?GLOBALROOTdeviceharddisk0partition4RecoveryWindowsRE").
B. If the Windows RE Status is Disabled (as shown in the screenshot below), give the following command to see if you can enable the WinRE:
reagentc /enable
* IMPORTANT NOTE: If after executing the above command you receive the message "REAGENTC.EXE: The Windows RE image was not found", SKIP the rest of the instructions and Repair Windows with an In-place upgrade to create the Recovery Partition and the WinRE environment before continuing below.
Step 2. Delete Windows Recovery Partition.
After disabling WinRE, proceed to delete the Recovery Partition using the DISKPART utility:
- In the Administrator: Command Prompt window, give the following commands in order:
diskpartlist disk
- Now check next to "Disk 0", if there is an asterisk character (*) in the "Gpt" column (or not), to find out the partition style of the disk (GPT or MBR).
- Example1: If there is an asterisk (*) under Gpt (as shown in the screenshot below), then the partition style on the drive is GPT.
- Example2: If there is not an asterisk character (*) under Gpt (as shown in the screenshot below), then the partition style on the drive is MBR
- After finding the partition style, give the following commands to list all partitions on "Disk 0".
select disk 0list partition
- Notice the number of the Recovery partition (e.g., "4" in this example).
- Now select (using its number) the Recovery partition and delete it with these commands:
select partition <number>*delete partition override
* e.g., "select partition 4" in this example.
- Without closing the 'Administrator: Command Prompt' window, continue to the next step.
Step 3. Shrink the OS Partition (Drive C:) by 250 MB.
Now, using the 'Disk Management' utility, proceed to shrink the OS partition by at least 250MB. To do this:
- Press Windows
+ R keys to open the run command box. - In the Open box, type:
diskmgmt.msc& click OK to open Disk Management.
- In Disk Management, right-click on drive (C:) and choose Shrink Volume.
- In Enter the amount of space to shrink in MB, type: 250 and then click Shrink.
- When the Shrink is completed, continue to the next step.
Step 4. Create a New Volume for the Recovery Partition.
Now, using the "Unallocated" disk space, create a new volume to set it as the recovery partition.
- Right-click on the Unallocated space and select New Simple Volume.
- Click Next at the first two (2) screens of the "New Simple Volume Wizard" and at the 3rd screen select Do not assign a drive letter or drive path and then click Next again.
- Leave the default selected settings on the next screen and then click Next and Finish to create and format the new partition.
- When the creation and format of the "New Volume" is completed, notice its size in MB (or GB) and continue to the next step. (e.g., "~1GB" in this example)
Step 5. Set the New Volume as the Recovery Partition using DISKPART.
- Open again the 'Administrator: Command Prompt' window and give the following command in DISKPART:
list partition
- Now, select the partition that has the same size as the "New Volume" you created in the previous step with this command:
select partition <number>*
* e.g., "select partition 4" in this example.
- Then, according to the partition style on the disk that you observed in step-2 (GPT or MBR), set the selected partition as the "Recovery Partition" using the command(s) below.
– If your disk Partition style is GPT (like in this example), issue these two (2) commands:
set id=de94bba4-06d1-4d40-a16a-bfd50179d6acgpt attributes=0x8000000000000001
– If your disk Partition style is MBR, issue this command:
set id=27 override
- Type
exitto close the DISKPART utility and continue to the next step.
Step 6. Enable the Windows Recovery Environment.
- Finally, proceed to activate the Windows Recovery Environment by giving the following command in 'Administrator: Command Prompt' window:
reagentc /enable
Additional Methods to Resize Recovery Partition
For users who encounter issues with the above steps, consider using the following advanced methods:
Use Windows PowerShell
PowerShell can be a powerful tool for managing disk partitions. Open PowerShell as an administrator and use the Get-Partition and Resize-Partition cmdlets to manage your partitions. See this Microsoft article for details. This method provides a scriptable way to automate the resizing process.
Check for Firmware Updates
Ensure your system firmware is up to date. Sometimes, partition management issues can be resolved with a simple firmware update from your PC's manufacturer. Visit the official website of your PC's manufacturer for the latest updates.
Summary
In this guide, we have outlined the steps to resize the recovery partition on Windows 10/11. By disabling the Windows Recovery Environment, deleting the existing recovery partition, shrinking the OS partition, and creating a new recovery partition, users can ensure their system is ready for future updates. Additionally, using PowerShell and checking for firmware updates are recommended for advanced users seeking alternative solutions.
That's all! Did it work for you? Please leave a comment in the comment section below or even better: like and share this blog post on social networks to help spread the word about this solution.
Frequently Asked Questions
- Top Windows 11 Issues and Solutions for April 2026: A Comprehensive Guide. - April 29, 2026
- FIX "BitLocker Recovery" Loop after installing KB5083769 - April 27, 2026
- Ultimate CoD Warzone Settings for Enhanced FPS and Visibility - April 9, 2026
