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.
Affects: Windows 11.
Fix time: ~30 minutes.
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.
- Open Command Prompt as Admin.
- Check WinRE status:
reagentc /info - Output shows:
- Windows RE status: Enabled or Disabled.
- Windows RE location: partition path.
- Boot Configuration Data (BCD) identifier: GUID.
- Recovery image location: path.
- If status: Disabled, run
reagentc /enable. - If location empty: WinRE.wim is missing. Continue to Method 2.
- If status enabled but commands fail: WinRE.wim file may be corrupted. Continue to Method 2.
- For locating partition: Disk Management → check for unallocated space ~500MB-1GB. Should be Recovery partition.
This is the diagnostic.
Method 2: Restore WinRE.wim from Windows 11 ISO
The standard restore.
- Download Windows 11 ISO from microsoft.com/software-download/windows11.
- Mount: right-click .iso → Mount. Note drive letter (e.g., F:).
- Open Admin Command Prompt.
- 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.)
- Copy:
md C:\Recovery\WindowsRE copy C:\Mount\Windows\System32\Recovery\Winre.wim C:\Recovery\WindowsRE\ - Unmount install.wim:
dism /Unmount-Wim /MountDir:C:\Mount /Discard - Register WinRE:
reagentc /setreimage /path C:\Recovery\WindowsRE reagentc /enable - Verify:
reagentc /info. Should show enabled. - 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.
- If recovery partition was deleted: need to recreate.
- Open Disk Management. Identify unallocated space at end of disk, or shrink C: by 1GB.
- Open Command Prompt as Admin.
- 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 - Or for MBR systems:
set id=27without the GPT attributes. - This creates the recovery partition with the right type GUID.
- Copy WinRE.wim to new partition (mount it first if needed).
- Run
reagentc /setreimage /path [partition path], thenreagentc /enable. - For complex setups: use AOMEI Partition Assistant or MiniTool Partition Wizard for visual partitioning.
- Caveat: deleting / creating system partitions risky. Back up before.
This is the deep restore.
How to verify the fix worked
reagentc /infoshows: 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.