Fix Reagentc /info Reporting Recovery Disabled on Windows 11
🔍 WiseChecker

Fix Reagentc /info Reporting Recovery Disabled on Windows 11

When you run the reagentc /info command in Windows 11, it may report that the Windows Recovery Environment is disabled. This prevents you from accessing Safe Mode, Reset this PC, and other recovery tools when your system encounters a critical error. The cause is often a missing or corrupted recovery partition, a deleted recovery image, or a system configuration change that turned off the recovery environment. This article explains why the recovery environment becomes disabled and provides step-by-step instructions to re-enable it using built-in Windows tools.

Key Takeaways: Re-enable the Windows Recovery Environment on Windows 11

  • Command Prompt (Admin): Use reagentc /enable to attempt automatic re-enablement of WinRE.
  • diskpart: Manually assign a drive letter to the recovery partition and verify its existence.
  • DISM /Export-Image: Extract the recovery image from a Windows 11 installation ISO if the local image is missing.

ADVERTISEMENT

Why Reagentc /info Shows Recovery Disabled

The Windows Recovery Environment is stored on a separate partition on your system drive. This partition contains a Windows Preinstallation Environment image that boots into recovery tools. When you run reagentc /info, the tool checks the configuration data in the Boot Configuration Data store and the physical presence of the recovery partition.

The most common reasons for the disabled state include:

  • Missing recovery partition: The partition was deleted during a disk cleanup, a manual partition operation, or a failed Windows update.
  • Corrupted recovery image: The winre.wim file inside the recovery partition is damaged or missing.
  • Improper BCD entry: The boot loader entry that points to the recovery partition is missing or points to an incorrect location.
  • Third-party disk tools: Partition managers or disk cloning software may have altered the partition layout and removed the recovery environment.

When the recovery environment is disabled, you cannot use options like Reset this PC, System Restore, or Command Prompt from the recovery menu. The system will still boot normally, but if a boot failure occurs, you will see a black screen with no recovery options.

Steps to Re-enable the Windows Recovery Environment

Follow these steps in order. Stop when the reagentc /info command shows that the recovery environment is enabled.

Step 1: Run reagentc /enable from an Elevated Command Prompt

  1. Open Command Prompt as administrator
    Press the Windows key, type cmd, then right-click Command Prompt and select Run as administrator. Confirm the UAC prompt.
  2. Check current recovery status
    Type reagentc /info and press Enter. Note the current state. If it says “Windows RE status: Disabled,” proceed.
  3. Attempt to enable the recovery environment
    Type reagentc /enable and press Enter. Wait for the operation to complete. A success message appears if the recovery partition is present and the image is intact.
  4. Verify the change
    Type reagentc /info again. If the status now shows “Enabled,” the fix is complete. If it still shows “Disabled,” continue to the next step.

Step 2: Verify the Recovery Partition Exists

  1. Open Disk Management
    Press Windows key + X, then select Disk Management. Look for a partition labeled “Recovery” that is roughly 500 MB to 1 GB in size. It is typically located after the C: drive partition.
  2. Check the partition type
    Right-click the partition and select Properties. Go to the Hardware tab and note the partition type. A healthy recovery partition shows type “Recovery” and has no drive letter assigned by default.
  3. If the recovery partition is missing
    Go to Step 4 to restore it from a Windows 11 installation ISO.

Step 3: Manually Assign a Drive Letter and Repair the BCD Entry

  1. Open Command Prompt as administrator
    Use the same method as Step 1.
  2. Launch diskpart
    Type diskpart and press Enter. Accept the UAC prompt if it appears.
  3. List all disks and select the system disk
    Type list disk, then type select disk X where X is the disk number containing Windows 11. Usually this is Disk 0.
  4. List partitions and identify the recovery partition
    Type list partition. Look for a partition of type “Recovery” with a size of about 500 MB to 1 GB. Note its partition number.
  5. Assign a drive letter temporarily
    Type select partition Y where Y is the recovery partition number. Then type assign letter=R.
  6. Exit diskpart
    Type exit.
  7. Check for the winre.wim file
    Type dir R:\Recovery\WindowsRE or dir R:\Recovery\WindowsRE\winre.wim. If the file exists, continue. If not, the recovery image is missing and you need Step 4.
  8. Remove the temporary drive letter
    Type diskpart, then select partition Y, then remove letter=R, then exit.
  9. Repair the BCD entry
    Type bcdedit /set {bootmgr} device partition=\Device\HarddiskVolumeZ where Z is the volume number of the recovery partition. To find the volume number, type mountvol and look for the recovery partition volume GUID. Alternatively, type reagentc /setreimage /path R:\Recovery\WindowsRE and then reagentc /enable.

Step 4: Restore the Recovery Partition from a Windows 11 ISO

  1. Download a Windows 11 installation ISO
    Go to the Microsoft Software Download page and download the Windows 11 ISO file for the edition you have installed. Use the Media Creation Tool or direct download.
  2. Mount the ISO
    Right-click the ISO file and select Mount. Note the drive letter assigned to the virtual DVD drive, for example D:.
  3. Open Command Prompt as administrator
    Press Windows key, type cmd, right-click Command Prompt, and select Run as administrator.
  4. Create a temporary folder for the recovery image
    Type md C:\RecoveryTemp and press Enter.
  5. Export the recovery image from the ISO
    Type DISM /Export-Image /SourceImageFile:D:\sources\install.wim /SourceIndex:1 /DestinationImageFile:C:\RecoveryTemp\winre.wim /Compress:max. If the ISO uses install.esd instead of install.wim, replace the filename accordingly. This process may take several minutes.
  6. Copy the recovery image to the correct location
    Type xcopy C:\RecoveryTemp\winre.wim C:\Windows\System32\Recovery\ /Y.
  7. Set the recovery image path and enable WinRE
    Type reagentc /setreimage /path C:\Windows\System32\Recovery then reagentc /enable.
  8. Verify the status
    Type reagentc /info. It should now show “Windows RE status: Enabled.”
  9. Clean up temporary files
    Type rmdir /s /q C:\RecoveryTemp and press Enter. Also unmount the ISO by right-clicking the virtual DVD drive and selecting Eject.

ADVERTISEMENT

Common Issues After Re-enabling the Recovery Environment

Reagentc /enable Fails with “The operation failed. Please reboot and try again.”

This error usually means the recovery partition is too small or does not exist. Use the manual partition assignment method in Step 3 to verify the partition size. If the partition is smaller than 500 MB, you cannot store the recovery image there. In that case, you must create a new recovery partition using a third-party partition tool or perform a repair installation of Windows 11.

Recovery Environment Shows “Disabled” After a Windows Update

Some cumulative updates reset the BCD configuration. Run reagentc /enable again after the update completes. If the issue persists, check the BCD entry with bcdedit /enum all and look for an entry named “Windows Recovery Environment.” If it is missing, use the bcdedit /create command to recreate it, specifying the correct device and partition.

No Recovery Partition Visible in Disk Management

If the recovery partition was deleted entirely, you must create a new one. Use a third-party partition tool like AOMEI Partition Assistant or MiniTool Partition Wizard to shrink the C: drive by 1 GB and create a new recovery partition. Then copy the winre.wim file from the Windows 11 ISO as described in Step 4 and assign the new partition as the recovery location using reagentc /setreimage.

Reagentc /info Output: Enabled vs Disabled

Item Enabled State Disabled State
Windows RE status Enabled Disabled
Recovery partition present Yes May be missing or corrupted
BCD entry for WinRE Present and points to correct partition Missing or incorrect
User access to recovery tools Can use Reset, Safe Mode, System Restore Cannot access recovery tools on boot failure

After re-enabling the recovery environment, test it by holding the Shift key while clicking Restart in the Start menu. The system should boot into the Choose an option screen. If it does not, repeat the steps and verify that the recovery partition is set as the active boot device for the recovery entry.

If you continue to see “Disabled” after following all steps, consider performing a repair installation of Windows 11 using the Media Creation Tool. This reinstalls the operating system while preserving your files and applications, and it recreates the recovery partition automatically.

ADVERTISEMENT