Fix Windows 11 Cannot Find Recovery Image on the Hidden Partition
🔍 WiseChecker

Fix Windows 11 Cannot Find Recovery Image on the Hidden Partition

Quick fix: Recovery image (WinRE.wim) typically lives on a hidden 500-700MB Recovery partition. To check: reagentc /info in Admin Command Prompt. If empty / disabled: locate WinRE.wim. Download Windows 11 ISO, mount, copy install.wim’s WinRE.wim from it. Place in C:\Recovery\WindowsRE\. Run reagentc /setreimage /path C:\Recovery\WindowsRE then reagentc /enable.

Windows can’t find the recovery image during Reset This PC or in-place repair. WinRE.wim may be: deleted (after partition cleanup), corrupted, or partition unmounted. Restore by providing the file from Windows 11 ISO.

Symptom: Windows 11 reports cannot find recovery image on hidden partition.
Affects: Windows 11.
Fix time: ~30 minutes.

ADVERTISEMENT

What causes this

WinRE.wim is the Windows Recovery Environment image. Default location: C:\Recovery\WindowsRE\WinRE.wim (visible) or recovery partition (typically hidden). Common reasons it’s missing:

  • Partition manager deleted recovery partition for space.
  • Drive imaging didn’t copy recovery partition.
  • WinRE.wim corrupted from disk error.
  • Reset operation that didn’t complete cleanly.
  • OEM removed recovery to reduce partition size.

Method 1: Check status and try re-enabling

The diagnostic step.

  1. Open Command Prompt as Admin.
  2. Check WinRE status:
    reagentc /info
  3. Output shows:
    • Windows RE status: Enabled or Disabled.
    • Windows RE location: partition path.
    • Boot Configuration Data (BCD) identifier: GUID.
    • Recovery image location: path.
  4. If status: Disabled, run reagentc /enable.
  5. If location empty: WinRE.wim is missing. Continue to Method 2.
  6. If status enabled but commands fail: WinRE.wim file may be corrupted. Continue to Method 2.
  7. For locating partition: Disk Management → check for unallocated space ~500MB-1GB. Should be Recovery partition.

This is the diagnostic.

ADVERTISEMENT

Method 2: Restore WinRE.wim from Windows 11 ISO

The standard restore.

  1. Download Windows 11 ISO from microsoft.com/software-download/windows11.
  2. Mount: right-click .iso → Mount. Note drive letter (e.g., F:).
  3. Open Admin Command Prompt.
  4. Extract WinRE.wim from install.wim:
    dism /Mount-Wim /WimFile:F:\sources\install.wim /index:6 /MountDir:C:\Mount /ReadOnly

    (Index 6 = Windows 11 Pro; adjust if different.)

  5. Copy:
    md C:\Recovery\WindowsRE
    copy C:\Mount\Windows\System32\Recovery\Winre.wim C:\Recovery\WindowsRE\
  6. Unmount install.wim:
    dism /Unmount-Wim /MountDir:C:\Mount /Discard
  7. Register WinRE:
    reagentc /setreimage /path C:\Recovery\WindowsRE
    reagentc /enable
  8. Verify: reagentc /info. Should show enabled.
  9. For specific Pro / Home edition: WinRE.wim is the same; index doesn’t matter for WinRE extraction.

This is the standard restore.

Method 3: Recreate recovery partition if deleted

For when partition is gone entirely.

  1. If recovery partition was deleted: need to recreate.
  2. Open Disk Management. Identify unallocated space at end of disk, or shrink C: by 1GB.
  3. Open Command Prompt as Admin.
  4. Use diskpart to create recovery partition:
    diskpart
    list disk
    select disk 0
    list partition
    create partition primary size=750
    format fs=ntfs label="Recovery" quick
    set id=27 OVERRIDE
    gpt attributes=0x8000000000000001
    exit
  5. Or for MBR systems: set id=27 without the GPT attributes.
  6. This creates the recovery partition with the right type GUID.
  7. Copy WinRE.wim to new partition (mount it first if needed).
  8. Run reagentc /setreimage /path [partition path], then reagentc /enable.
  9. For complex setups: use AOMEI Partition Assistant or MiniTool Partition Wizard for visual partitioning.
  10. Caveat: deleting / creating system partitions risky. Back up before.

This is the deep restore.

How to verify the fix worked

  • reagentc /info shows: Windows RE status: Enabled.
  • Settings → System → Recovery → Reset this PC → available without errors.
  • Shift+Restart → Troubleshoot → Advanced options → shows full menu.
  • Recovery options work: Startup Repair, Command Prompt, Reset, etc.

If none of these work

If recovery still missing: SSD wear / failure: drive may not support partition writes well. Test drive health. For OEM PCs: vendor-specific recovery. Contact OEM for recovery USB or downloadable image. For PCs with very small drives: 64GB eMMC drives may not fit standard recovery. Skip recovery; rely on Reset This PC via Cloud download. For dual-boot: recovery for both OSes complex. Recreate Windows-only. For ARM Windows 11: ARM-specific WinRE.wim. Get from ARM ISO. For specific OEM partition layout: HP, Dell, Lenovo may have custom recovery. Use vendor recovery tool. Last resort: clean install: Media Creation Tool. Reinstalls Windows with fresh recovery.

Bottom line: Check reagentc /info. Extract WinRE.wim from Windows 11 ISO. Copy to C:\Recovery\WindowsRE\. Re-register with reagentc /setreimage + reagentc /enable.

ADVERTISEMENT