๐Ÿ› ๏ธ HowToFixNow

Windows 11 Blue Screen: What to Do and How to Fix It

Updated on 4/28/20263 min readHowToFixNow

The dreaded Blue Screen of Death (BSOD) on Windows 11 is scary, but in most cases fixable in minutes. Let's see how to identify the cause and fix it.

Quick fix (TL;DR)

  1. Note the error code on the blue screen
  2. Boot into Safe Mode (Shift + Restart โ†’ Troubleshoot)
  3. Run sfc /scannow and chkdsk /f /r
  4. Update or roll back recent drivers
  5. If nothing works, System Restore

Most common BSOD codes

CodeMeaningRecommended action
CRITICAL_PROCESS_DIEDCritical process crashedsfc + DISM + drivers
MEMORY_MANAGEMENTRAM or memory driver issueRAM test with mdsched
DRIVER_IRQL_NOT_LESS_OR_EQUALFaulty driverUpdate/uninstall recent driver
PAGE_FAULT_IN_NONPAGED_AREAFaulty RAM or diskRAM test + chkdsk
IRQL_NOT_LESS_OR_EQUALDriver/hardware conflictCheck recent drivers
SYSTEM_SERVICE_EXCEPTIONWindows service errorsfc + update
KMODE_EXCEPTION_NOT_HANDLEDKernel driverSafe mode + driver removal

Step-by-step guide

Step 1 โ€” Identify the cause

Before the BSOD, did you install something? Update drivers? Change hardware? Note the error code shown on screen (e.g., MEMORY_MANAGEMENT). On Windows 11, under the QR code you'll find "What failed" with the responsible file (e.g., nvlddmkm.sys = NVIDIA driver).

Step 2 โ€” Boot into Safe Mode

If Windows won't start normally:

  1. Force shutdown during boot 3 times in a row
  2. Recovery Environment activates
  3. Troubleshoot โ†’ Advanced options โ†’ Startup Settings โ†’ Restart
  4. Press 4 for Safe Mode

In Safe Mode only essential drivers load: if PC is stable here, the problem is a driver/software.

Step 3 โ€” Run repair commands

Open Command Prompt as administrator:

sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth
chkdsk C: /f /r

Restart after each command if requested.

Step 4 โ€” Uninstall recent drivers

Open Device Manager (Win + X โ†’ Device Manager). Look for devices with yellow triangle. For each suspicious driver:

  • Right-click โ†’ Properties โ†’ Driver โ†’ Roll Back Driver (if available)
  • Alternative: Uninstall device (Windows reinstalls on reboot)

The most common culprits: graphics card, network card, audio.

Step 5 โ€” Test RAM and disk

RAM test:

  • Search "Windows Memory Diagnostic", choose "Restart now"
  • PC will run test at boot (15-30 minutes)

Disk test:

  • Open Admin PowerShell and run: Get-PhysicalDisk | Get-StorageReliabilityCounter
  • If you see read/write errors, disk is failing

Step 6 โ€” System Restore

If you have a restore point before the issue:

  1. Search "Create a restore point"
  2. Click "System Restore"
  3. Choose a point before the issue
  4. Confirm and wait (20-40 minutes)

Step 7 โ€” Reset Windows (last resort)

If nothing works: Settings โ†’ System โ†’ Recovery โ†’ Reset PC. Choose "Keep my files" to preserve documents and photos.

Common mistakes to avoid

  • โŒ Don't ignore recurring BSODs: they indicate a real issue that may worsen
  • โŒ Don't install random "BSOD fixers": often malware
  • โŒ Don't open the PC if under warranty
  • โŒ Don't overclock if you don't know what you're doing: causes 30% of BSODs on gaming PCs

When to call a technician

If after all steps BSODs continue and RAM/disk tests show errors, you have a hardware problem. A technician can confirm and replace the faulty component.

Frequently asked questions

Does the blue screen delete my data?

No, BSOD is a Windows protection that stops the system to prevent damage. Your files remain intact.

What does the error code mean?

It indicates the type of issue. Common ones: CRITICAL_PROCESS_DIED (driver/process), MEMORY_MANAGEMENT (RAM/driver), DRIVER_IRQL (faulty driver).

Do I need to reinstall Windows after a BSOD?

Only as a last resort. 90% of cases are solved by updating drivers, running sfc /scannow, or restoring the system.

How many BSODs before something breaks?

Occasional BSOD doesn't damage hardware. Frequent BSODs (multiple times a day) indicate a serious problem.