How to Fix the Blue Screen of Death (BSOD) on Windows 11

3 min read

The Blue Screen of Death (BSOD) is Windows’ most feared error. It appears when the system detects a critical failure it cannot recover from. The good news: in most cases there is a straightforward fix.

What Information Does the Blue Screen Show?

In Windows 11 the blue screen shows:

  • A stop code like SYSTEM_THREAD_EXCEPTION_NOT_HANDLED
  • A hexadecimal error code like 0x00000050
  • A QR code you can scan to find more information

Write down the stop code before the PC restarts.

Most Common Causes and Solutions

Outdated or Corrupted Drivers (Cause #1)

Update your drivers, especially GPU and chipset. Open Device Manager (right-click Start → Device Manager) and look for devices with yellow warning icons.

Faulty RAM

Run Windows Memory Diagnostic: search for it in Start, restart and let it run. If it finds errors, your RAM needs replacement.

Problematic Windows Update

If BSOD started after an update: Settings → Windows Update → Update history → Uninstall updates. Uninstall the most recent one.

Hard Drive with Bad Sectors

Open CMD as administrator and run: chkdsk C: /f /r. Restart when prompted. This scans and repairs disk errors.

Malware

Run a full scan with Windows Defender or Malwarebytes Free.

Universal Solution: Safe Mode

If your PC can’t boot normally due to BSOD, boot into Safe Mode: force-shut down 3 times in a row → Windows shows recovery options → select Safe Mode. From there you can uninstall problematic drivers or updates.

Most Common BSOD Codes and Their Meaning

CodeProbable Cause
IRQL_NOT_LESS_OR_EQUALFaulty driver or RAM
MEMORY_MANAGEMENTFaulty RAM
SYSTEM_SERVICE_EXCEPTIONCorrupted driver (common after updates)
PAGE_FAULT_IN_NONPAGED_AREADriver or RAM
CRITICAL_PROCESS_DIEDCorrupted system file
DPC_WATCHDOG_VIOLATIONDisk or storage driver

Can a blue screen damage my computer?

Not by itself, but what causes it can be damaging. The BSOD is a protection mechanism: Windows stops abruptly to prevent further damage. If it happens frequently, it indicates an underlying issue (RAM, disk, driver) that must be resolved.

How do I find out what caused the last BSOD on Windows 11?

Use WhoCrashed (free) or Windows Event Viewer: search for Event Viewer → Windows Logs → System → filter by Error. Windows also saves minidump files in C:\Windows\Minidump that you can analyze with WinDbg.

How many BSODs are normal on Windows 11?

None should be ‘normal’. An isolated BSOD after a hardware or software change may be a one-off. If it happens more than 2-3 times in a week without a clear cause, there is a problem needing attention: start by checking RAM and drivers.

Conclusion

Most BSODs are solved by updating drivers (especially GPU), running Memory Diagnostic and checking the disk with chkdsk. If the PC won’t start, use Safe Mode. For persistent errors, look up the specific code in the table or on Microsoft’s support site.

Similar Posts