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.
Affects: Windows 11 (and Windows 10) with boot issues.
Fix time: ~20 minutes.
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.
- Power on PC. When Windows logo appears: force shutdown (hold power button 5 seconds until off).
- Power on again. Force shutdown at Windows logo.
- Power on third time. Force shutdown.
- Fourth power-on: Windows detects failed boots and enters Automatic Repair / Recovery Environment.
- From recovery screen: Advanced options → Troubleshoot → Advanced options → Startup Repair.
- Pick your account. Enter password.
- Startup Repair runs. Progress shown. Takes 5-15 minutes.
- If fixed: PC reboots into Windows normally.
- If not fixed: tool reports “Startup Repair couldn’t repair your PC.” Proceed to Method 3.
This is the basic recovery.
Method 2: Boot from Windows install USB to reach Recovery
For when force-shutdown method fails or you need richer recovery options.
- Create Windows 11 install USB from another PC using Media Creation Tool.
- Boot the problem PC from USB. Press F12/F11/F10 during boot to access boot menu, pick USB.
- At Windows install screen: click Repair your computer (bottom-left).
- Pick Troubleshoot → Advanced options → Startup Repair.
- Or pick Command Prompt for manual fixes (see Method 3).
- 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.
- From WinRE Command Prompt:
- Rebuild BCD:
bootrec /scanos bootrec /rebuildbcd bootrec /fixmbr - 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 - 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)
- For check disk:
chkdsk C: /f /r - 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 /enumin 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.