Windows 11 Won't Boot: A Step-by-Step Recovery Guide

A Windows machine that won't boot feels like a brick, but in most cases the data is fine and the fix takes minutes — if you work through the diagnostics in the right order. This guide is that order. It goes from least invasive to most invasive, so you never destroy a recoverable system by jumping straight to a reinstall.

01 — First, Identify What Kind of "Won't Boot" You Have

The fix depends entirely on where the boot process dies. Watch the screen carefully and match your symptom:

  • No power, no lights, no fans — hardware problem (PSU, cable, motherboard). Software fixes won't help; stop here and check the physical basics first.
  • Manufacturer logo appears, then a black screen or endless spinner — Windows is starting and failing. This guide is for you.
  • "No bootable device" / "Operating system not found" — the firmware can't find the boot loader. Go straight to section 05 (boot record repair), but check first that the drive is detected in UEFI/BIOS at all. If the drive is missing from firmware, it may have failed.
  • Blue screen with a stop code — note the exact code. Codes like INACCESSIBLE_BOOT_DEVICE point to storage drivers; CRITICAL_PROCESS_DIED often follows a bad update. Continue with this guide either way.
  • Automatic Repair loop ("Preparing Automatic Repair" → fails → reboots) — continue with this guide, starting at section 03.

02 — Get Into the Recovery Environment (WinRE)

Almost everything below happens inside the Windows Recovery Environment. Three ways in:

  • The interrupt trick: power the machine on, and the moment the Windows logo appears, hold the power button to force it off. Do this twice. On the third boot, Windows launches recovery automatically.
  • If Windows partially loads: hold Shift while clicking Restart on the sign-in screen.
  • If neither works: create installation media on another PC with Microsoft's Media Creation Tool, boot from the USB, and click Repair your computer on the second screen instead of Install.

💡 Plain English: WinRE is a tiny separate copy of Windows that lives on its own hidden partition. Even when your main Windows is broken, this miniature one usually still works — and it has the tools to fix the big one.

03 — Run Startup Repair (Let Windows Try First)

In WinRE: Troubleshoot → Advanced options → Startup Repair. It scans for the common causes — corrupted boot configuration, damaged registry hives, broken driver entries — and fixes what it can. It succeeds more often than its reputation suggests, especially after failed updates.

If it reports "Startup Repair couldn't repair your PC," don't reboot in despair — it writes a log you can read at C:\Windows\System32\Logfiles\Srt\SrtTrail.txt, and the failure usually means we just need the manual steps below.

04 — Try Safe Mode (and Use It to Undo the Damage)

In WinRE: Troubleshoot → Advanced options → Startup Settings → Restart, then press 4 (Safe Mode) or 5 (Safe Mode with Networking).

If safe mode boots, the core OS is healthy and something that loads at startup is the problem. From safe mode, in order of likelihood:

  • Uninstall the most recent quality update: Settings → Windows Update → Update history → Uninstall updates. Bad updates are one of the most common causes of sudden boot failure.
  • Roll back or uninstall a recently installed driver — GPU and storage drivers are the usual suspects. Device Manager → the device → Properties → Driver → Roll Back Driver.
  • Disable recently installed startup software with Task Manager's Startup apps tab — third-party antivirus is a frequent offender.
  • Run System Restore (WinRE → Advanced options → System Restore) if you have a restore point from before the failure. It rewinds system files and the registry without touching your documents.

05 — Repair the Boot Records (Command Prompt)

If Windows dies before the spinner even appears, or firmware says no OS exists, the boot loader itself is damaged. In WinRE open Troubleshoot → Advanced options → Command Prompt and run:

bootrec /scanos
bootrec /rebuildbcd
bootrec /fixmbr
bootrec /fixboot

⚠️ Common gotcha: on modern UEFI systems, bootrec /fixboot often returns Access is denied. That's expected — it's a legacy-BIOS command. The UEFI equivalent is to rebuild the boot files directly:

# Find your Windows drive letter first (it may not be C: inside WinRE)
diskpart
list volume
exit

# Rebuild UEFI boot files (replace C: with your Windows volume)
bcdboot C:\Windows /s S: /f UEFI

If the EFI partition has no letter, assign one in diskpart first (select volume on the ~100 MB FAT32 partition, then assign letter=S).

06 — Check the File System and System Files

Still failing? Check for disk corruption and damaged Windows files, again from the WinRE command prompt:

# File system check (replace C: with your Windows volume)
chkdsk C: /f

# System file check, offline mode
sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows

If chkdsk finds and fixes a pile of errors, reboot and test — file system corruption from a hard power loss is a classic boot killer. If it finds thousands of errors or the drive makes clicking noises, stop: the drive is dying, and your priority changes from fixing boot to copying data off it (you can copy files from the WinRE command prompt or by booting a Linux USB).

07 — The Last Resorts, in the Right Order

  • Reset this PC → Keep my files (WinRE → Troubleshoot). Reinstalls Windows but preserves your documents. Installed programs are removed.
  • In-place upgrade repair: if you can get into Windows at all (even safe mode with networking), running setup from a mounted Windows 11 ISO and choosing Keep files and apps rebuilds the OS while keeping everything. This fixes deep corruption that nothing else touches.
  • Clean install — the true last resort, after your files are backed up from WinRE or a Linux USB.

08 — Quick Reference

SymptomStart at
Black screen after logo / spinner foreverSection 03 — Startup Repair
Automatic Repair loopSection 04 — Safe Mode, uninstall updates
"No bootable device"Section 05 — bcdboot
BSOD after an updateSection 04 — uninstall updates
Drive missing in UEFI/BIOSHardware — check cables, suspect drive failure

🔒 Bottom line: work least-invasive to most-invasive, and never run a destructive step (format, clean install) until your data is safe. The recovery environment can read your files even when Windows can't boot — use that before anything risky.