📬 Instant Delivery 🔑 Genuine Product Keys 🔒 Secure Payments 🌐 24/7 Live Chat 🛡️ Support Included
windows 11 blue screen

Windows 11 Blue Screen (BSOD): How to Fix Common Stop Codes

⚡ TL;DR: Fixing a Windows 11 blue screen

A blue screen (BSOD) means Windows hit an error it could not recover from and restarted to protect itself. Write down the stop code on screen, since that tells you the cause. The big four culprits are drivers (especially graphics), failing RAM, corrupted system files, and failing storage. Work through: (1) note the stop code, (2) undo whatever changed recently, (3) update or roll back drivers, (4) run SFC and DISM, (5) test RAM with Windows Memory Diagnostic, and (6) check the drive with CHKDSK. If crashes persist after a clean install, it is hardware. A genuine Windows 11 Pro key ($15) covers reactivation if you reinstall.

Few things kill your confidence in a PC faster than a blue screen. One second you are working, the next the screen goes blue, a sad face appears, and everything unsaved is gone. The good news is that blue screens are diagnostic tools, not death sentences. That stop code on the screen is Windows telling you exactly what went wrong, and most causes are fixable in software.

This guide explains how to read the error, what the most common stop codes actually mean, and how to work through the fixes in a sensible order rather than randomly reinstalling things.

First: Write Down the Stop Code

Every blue screen shows a stop code, usually in the form of words in capitals like DRIVER_IRQL_NOT_LESS_OR_EQUAL or a hex code like 0x0000007E. Sometimes it also names a specific file, such as nvlddmkm.sys, which is an enormous clue because that filename points straight at the guilty driver.

Take a photo with your phone. If the PC restarts too fast to read it, you can find the history afterward:

  1. Press Windows + R, type eventvwr, and press Enter.
  2. Expand Windows Logs, then click System.
  3. Look for red Error entries around the time of the crash, particularly ones from BugCheck.
💡 Before anything else, ask what changed: Did you install new hardware, update a driver, add software, or overclock something in the days before the crashes started? Undoing the most recent change fixes a large share of blue screens without any deeper troubleshooting.

What the Most Common Stop Codes Mean

Stop code Usual cause Start with
DRIVER_IRQL_NOT_LESS_OR_EQUAL A driver accessed bad memory Fix 2 (drivers)
MEMORY_MANAGEMENT Faulty RAM or memory conflict Fix 4 (RAM test)
PAGE_FAULT_IN_NONPAGED_AREA RAM or a driver requesting missing data Fix 4, then Fix 2
SYSTEM_SERVICE_EXCEPTION Driver or corrupted system file Fix 3 (SFC/DISM)
CRITICAL_PROCESS_DIED Essential Windows process failed Fix 3 (SFC/DISM)
INACCESSIBLE_BOOT_DEVICE Drive, storage driver, or BIOS mode issue Fix 5 (disk)
KERNEL_SECURITY_CHECK_FAILURE Outdated driver or memory corruption Fix 2, then Fix 4
VIDEO_TDR_FAILURE Graphics driver stopped responding Fix 2 (GPU driver)
UNEXPECTED_STORE_EXCEPTION Storage or antivirus conflict Fix 5 (disk)
WHEA_UNCORRECTABLE_ERROR Hardware fault, often CPU or overclock Fix 6 (hardware)

Fix 1: Undo What Changed, and Boot Into Safe Mode

If the crashes started after a specific change, reverse it first. Uninstall the new software, remove the new hardware, or reset any overclock to default in BIOS.

If Windows crashes too often to work in normally, use Safe Mode, which loads only essential drivers:

  1. Hold Shift while clicking Restart from the Start menu.
  2. Choose Troubleshoot, then Advanced options, then Startup Settings, then Restart.
  3. Press 4 for Safe Mode or 5 for Safe Mode with Networking.

If your PC does not blue screen in Safe Mode, the problem is almost certainly a driver or third-party software rather than hardware. That is genuinely useful information.

You can also try System Restore from that same Advanced options menu, which rolls the system back to a point before the crashes began without touching your personal files.

Fix 2: Update or Roll Back Drivers

Drivers cause the majority of blue screens, and graphics drivers lead the pack. If your stop code named a .sys file, search that filename to identify which driver it belongs to.

To install a clean, current driver:

  1. Right-click Start, open Device Manager, and expand Display adapters to identify your GPU.
  2. Download the latest driver directly from NVIDIA, AMD, or Intel for your exact model.
  3. Run the installer and choose the clean installation option if offered.
  4. Restart.

If the crashes started right after a driver update, roll it back instead:

  1. In Device Manager, right-click the device and choose Properties.
  2. Open the Driver tab and click Roll Back Driver.
  3. Restart.

Also check for chipset, storage, and network driver updates from your motherboard or laptop manufacturer, since those cause blue screens too and people rarely think to update them.

Fix 3: Repair System Files with SFC and DISM

Corrupted Windows files trigger codes like SYSTEM_SERVICE_EXCEPTION and CRITICAL_PROCESS_DIED. Two built-in tools repair them without touching your data.

  1. Right-click Start and open Terminal (Admin).
  2. Run the System File Checker:
    sfc /scannow
  3. Then repair the underlying Windows image:
    DISM /Online /Cleanup-Image /RestoreHealth
  4. Restart and see whether the crashes stop.

Both commands are safe to run at any time and never delete personal files.

Fix 4: Test Your RAM

Faulty memory is behind MEMORY_MANAGEMENT and PAGE_FAULT_IN_NONPAGED_AREA, and it produces blue screens that feel random rather than tied to any particular activity. Windows has a built-in tester.

  1. Press Windows + R, type mdsched.exe, and press Enter.
  2. Choose Restart now and check for problems.
  3. The PC restarts and runs a memory test, which takes several minutes. Let it complete.
  4. After it boots back into Windows, results appear in a notification, or in Event Viewer under Windows Logs, System, filtered by source MemoryDiagnostics-Results.

If errors are found, the usual approach is to reseat the RAM sticks, then test one stick at a time to identify which is faulty. If you recently enabled an XMP or EXPO memory profile, try turning it off, since unstable memory timings cause exactly this pattern.

Fix 5: Check Your Storage Drive

A failing drive causes INACCESSIBLE_BOOT_DEVICE and UNEXPECTED_STORE_EXCEPTION, and often shows up alongside slow performance and files that fail to open.

  1. Open Terminal (Admin).
  2. Run:
    chkdsk C: /f /r
  3. It will say the volume is in use and ask to schedule the scan at next restart. Type Y and press Enter.
  4. Restart. The scan runs before Windows loads and can take a while on large drives, so leave it alone.

Also make sure your drive has free space. A nearly full system drive causes instability. Aim to keep at least 15 to 20 GB free.

Fix 6: Rule Out Hardware and Overheating

If software fixes have not helped, especially with WHEA_UNCORRECTABLE_ERROR, look at the physical side:

  • Reset any overclock. Return CPU, GPU, and RAM to stock speeds in BIOS. Unstable overclocks are a classic blue screen source.
  • Check temperatures. Overheating causes crashes under load. Clean dust from fans and vents, and make sure airflow is not blocked.
  • Reseat components. On a desktop, reseat RAM and the graphics card, and confirm power cables are firmly connected.
  • Consider the power supply. A failing PSU produces seemingly random crashes that no software fix resolves.

Fix 7: Reset or Clean Install as the Last Resort

If blue screens continue after all of the above, a fresh Windows install eliminates every software cause at once, which also serves as a definitive test: if crashes still happen on a clean install, the problem is hardware.

  • Reset (Keep my files): Settings, System, Recovery, Reset this PC. Reinstalls Windows while preserving personal files, removing apps.
  • Clean install: The most thorough option, wiping the drive entirely. Our clean install Windows 11 guide covers the whole process.

Back up first, and have your product key ready to reactivate afterward. If your Windows was never properly activated, this is a good moment to sort that out, since a genuine install receives all security and stability updates reliably. See our guide on fixing Windows 11 activation problems if you hit trouble there.

🔑 Reinstalling? Genuine keys at Software Kings:

How to Prevent Blue Screens

  • Keep Windows updated. Many blue screens are fixed by patches you have not installed yet. If updates are failing, see our guide on fixing stuck Windows updates.
  • Get drivers from manufacturers, not random driver-updater utilities, which frequently install mismatched versions.
  • Avoid unnecessary system tweakers and registry cleaners. They cause more instability than they solve.
  • Keep 15 to 20 GB free on your system drive.
  • Run genuine, activated Windows. Cracked installs often have tampered system files, which is exactly the kind of corruption that produces blue screens.

Frequently Asked Questions

What causes a blue screen on Windows 11?

Most often a faulty or outdated driver, failing RAM, corrupted system files, or a failing storage drive. Overheating, unstable overclocks, and power supply problems account for most of the rest. The stop code on screen indicates which category you are dealing with.

Is a blue screen serious?

A single blue screen after a driver update or a one-off glitch is usually nothing to worry about. Repeated blue screens mean a real underlying problem that needs diagnosis, particularly if they happen without any pattern, which often points to RAM or storage.

How do I find out what caused my blue screen?

Note the stop code shown on screen, and any .sys filename listed, which names the guilty driver directly. If the PC restarts too quickly, open Event Viewer (eventvwr), go to Windows Logs, System, and look for BugCheck errors at the crash time.

Can a blue screen damage my computer?

No. The blue screen is a protective measure, stopping the system before a fault can cause damage. You may lose unsaved work, but the crash itself does not harm hardware. Repeated crashes can indicate hardware that is already failing.

What does MEMORY_MANAGEMENT mean?

It usually points to faulty RAM or a memory conflict. Run Windows Memory Diagnostic (mdsched.exe), and if you have enabled an XMP or EXPO profile, try disabling it. If errors appear, test one RAM stick at a time to find the bad one.

How do I fix DRIVER_IRQL_NOT_LESS_OR_EQUAL?

This is a driver problem. If the blue screen named a .sys file, that identifies the driver. Update it from the manufacturer, or roll it back in Device Manager if the crashes started after an update. Graphics and network drivers are the most common offenders.

Will Safe Mode help diagnose a blue screen?

Yes, and it is one of the most useful tests. Safe Mode loads only essential drivers, so if your PC is stable there, the cause is almost certainly a third-party driver or software rather than hardware.

Do SFC and DISM delete my files?

No. Both only repair Windows system files. Your documents, photos, and installed applications are untouched, and both are safe to run whenever you suspect corruption.

Should I reinstall Windows to fix blue screens?

Only after trying drivers, SFC/DISM, RAM testing, and disk checks. A clean install eliminates all software causes, so if crashes continue afterward, you have confirmed a hardware fault. Back up first and have a product key ready.

Can unactivated or pirated Windows cause blue screens?

It certainly can contribute. Cracked installs frequently have modified system files and often fail to receive updates properly, which is exactly the kind of corruption that triggers blue screens. A genuine Windows 11 Pro key ensures clean system files and reliable updates.

Final Thoughts

Blue screens look catastrophic but are usually a driver problem wearing a scary costume. Start with the stop code, undo recent changes, sort out your drivers, then run SFC and DISM. Those steps resolve the majority of cases. RAM and disk testing catch most of what remains, and a clean install settles whether anything left is hardware.

If you do reinstall, make sure the license side is handled cleanly. A genuine Windows 11 Pro key at $15 activates instantly and keeps your system files and updates in the state Windows expects, which removes one whole category of instability from the picture.

Reinstalling Windows? Get a genuine key.

Genuine retail keys with instant email delivery and activation support.

Windows 11 Pro $15 →
Browse Windows 11 Keys →

Fast Delivery & Activation

Your Keys arrive via Email

Customer Service

Premium Support 24/7

100% Secure Checkout

Stripe / MasterCard / Visa

0