Windows 11 Won't Boot: Complete Fix Guide for 2025-2026

8 min readUpdated

Windows 11 not starting, stuck on logo, black screen, or blue screen after update? Complete step-by-step fix from safe mode to bootloader repair and clean install.

Windows 11 failing to boot after an update is one of the most common issues in 2025-2026, especially after the problematic 24H2 cumulative updates. Here's a systematic fix guide from quickest to most involved.


Identify Your Symptom First

What you see Likely cause Go to
Black screen, cursor visible GPU driver or Explorer crash Step 2
Stuck on Windows logo Corrupted system files Step 3
Blue screen with error code Critical error Step 4
"Automatic Repair" loop Corrupted bootloader Step 5
BIOS loads but Windows doesn't Disk or MBR issue Step 6

Step 1: Quick Checks First

Before advanced steps:

  • Remove all USB drives and external storage
  • Disconnect extra monitors (use only one)
  • Try Ctrl + Alt + Del — if it responds, Windows is partially alive
  • Press Win + Ctrl + Shift + B — resets the GPU driver

Step 2: Access Recovery Mode

Method 1: If Windows partially loads — Win + ISystemRecoveryAdvanced startupRestart now

Method 2: Interrupt boot 3 times with the power button → Recovery appears automatically

Method 3: Boot from Windows 11 USB → choose Repair your computer (not Install)


Step 3: Boot into Safe Mode

From Recovery: TroubleshootAdvanced optionsStartup SettingsRestart → press F4 (Safe Mode)

If Windows works in Safe Mode — the problem is a driver or startup program, not Windows itself.

# In Safe Mode — check startup entries
Get-ItemProperty "HKCU:\Software\Microsoft\Windows\CurrentVersion\Run"

# Open MSConfig to disable third-party startup items
msconfig

Step 4: Repair System Files

From Recovery → TroubleshootAdvanced optionsCommand Prompt

sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth

If DISM fails without internet (common in Recovery):

DISM /Online /Cleanup-Image /RestoreHealth /Source:WIM:D:\sources\install.wim:1 /LimitAccess

Step 5: Rebuild the Bootloader

For the "Automatic Repair" loop — the BCD (Boot Configuration Data) is corrupted:

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

For UEFI systems specifically:

bcdboot C:\Windows /s C: /f UEFI

Step 6: Check the Disk

Disk errors frequently prevent Windows from booting:

chkdsk C: /f /r /x
wmic diskdrive get status,model

If chkdsk finds and fixes errors — restart and test.


Step 7: System Restore

If a restore point exists from before the problem:

Recovery → TroubleshootAdvanced optionsSystem Restore → choose a date before the issue started


Step 8: Uninstall the Problematic Update

If the problem started after a specific update:

Recovery → TroubleshootAdvanced optionsUninstall Updates → remove the latest Quality or Feature update


Step 9: Reset Windows (Keep Files)

Recovery → TroubleshootReset this PCKeep my filesCloud download

Cloud download gets a fresh Windows image from Microsoft. Personal files are kept, apps are removed.


Step 10: Clean Install

If nothing else works — download the Media Creation Tool from microsoft.com/software-download/windows11, create a bootable USB, and do a clean install.


🔍 Got an error code on the blue screen?

→ Windows Error Code Decoder — enter the code (0x18B, 0x0000007E, etc.) and get the cause and fix steps instantly.


Summary

Work through in order: Safe Mode → SFC/DISM → Bootloader repair → chkdsk → System Restore → Uninstall update → Reset with files → Clean install. Most issues resolve at steps 3-6. Don't skip steps — each one narrows down the cause.

Related articles

← All articles