How to Use Startup Repair From Recovery Environment in Windows 11
🔍 WiseChecker

How to Use Startup Repair From Recovery Environment in Windows 11

Quick fix: Force-shutdown PC during boot three times (hold power button for 5 seconds during Windows logo). Fourth boot enters Automatic Repair. Click Advanced options → Troubleshoot → Advanced options → Startup Repair. Tool diagnoses and fixes boot issues automatically.

Windows won’t boot. Startup Repair is the first-line automatic recovery. It checks BCD, system files, boot record, and tries automated fixes. Works for many but not all boot failures.

Symptom: Windows 11 won’t boot; need to access Startup Repair.
Affects: Windows 11 (and Windows 10) with boot issues.
Fix time: ~20 minutes.

ADVERTISEMENT

What causes this

Boot failures: damaged BCD, corrupt system files, broken bootmgr, missing winload.exe, partition table changes. Startup Repair runs a series of automated checks and fixes. Usually completes in 5-15 minutes.

Method 1: Force WinRE entry via three failed boots

The standard route.

  1. Power on PC. When Windows logo appears: force shutdown (hold power button 5 seconds until off).
  2. Power on again. Force shutdown at Windows logo.
  3. Power on third time. Force shutdown.
  4. Fourth power-on: Windows detects failed boots and enters Automatic Repair / Recovery Environment.
  5. From recovery screen: Advanced options → Troubleshoot → Advanced options → Startup Repair.
  6. Pick your account. Enter password.
  7. Startup Repair runs. Progress shown. Takes 5-15 minutes.
  8. If fixed: PC reboots into Windows normally.
  9. If not fixed: tool reports “Startup Repair couldn’t repair your PC.” Proceed to Method 3.

This is the basic recovery.

ADVERTISEMENT

Method 2: Boot from Windows install USB to reach Recovery

For when force-shutdown method fails or you need richer recovery options.

  1. Create Windows 11 install USB from another PC using Media Creation Tool.
  2. Boot the problem PC from USB. Press F12/F11/F10 during boot to access boot menu, pick USB.
  3. At Windows install screen: click Repair your computer (bottom-left).
  4. Pick Troubleshoot → Advanced options → Startup Repair.
  5. Or pick Command Prompt for manual fixes (see Method 3).
  6. This route gives access to a fully-functional recovery environment even when local WinRE is damaged.

This is the right path for unbootable PCs.

Method 3: Manual recovery commands if Startup Repair fails

For complex cases.

  1. From WinRE Command Prompt:
  2. Rebuild BCD:
    bootrec /scanos
    bootrec /rebuildbcd
    bootrec /fixmbr
  3. For UEFI systems, also:
    diskpart
    list volume
    select volume N (EFI partition, FAT32 ~100MB)
    assign letter=S
    exit
    bcdboot C:\Windows /s S: /f UEFI
  4. Repair system files:
    sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows
    DISM /Image:C:\ /Cleanup-Image /RestoreHealth /Source:WIM:D:\sources\install.wim:1 /LimitAccess

    (D = USB drive)

  5. For check disk:
    chkdsk C: /f /r
  6. Exit. Reboot. Test boot.

This is the manual deep-repair.

How to verify the fix worked

  • PC boots to Windows login screen normally.
  • No recovery loop or Automatic Repair on subsequent boots.
  • Run bcdedit /enum in Terminal post-boot. Boot entries valid.

If none of these work

If Startup Repair fails repeatedly: Disk failure: failing SSD causes recurring boot issues. CrystalDiskInfo on a connected drive (boot from Linux Live USB). If failing, replace. Severe corruption: in-place upgrade from Windows 11 ISO. Run setup.exe from mounted ISO — select Upgrade: Keep personal files and apps. Reinstalls Windows over itself. For BCD that’s severely damaged: delete BCD entirely and recreate. bcdedit /export bcd.bak then create new BCD with bcdboot. For BitLocker-encrypted drives: need recovery key before any repair. Get from account.microsoft.com/devices/recoverykey. Last resort: clean reinstall: backup data via Linux Live USB if possible, then fresh Windows install.

Bottom line: Force-shutdown three times during boot to trigger WinRE. Or boot from Windows install USB → Repair your computer. Pick Startup Repair from Advanced options. Manual commands (bootrec, bcdboot, sfc) for deeper repair.

ADVERTISEMENT