How to Fix a Blue Screen Error in Windows 11 and 10

A blue screen crash is one of the most stressful things Windows can throw at you. One second you are working, the next your PC restarts with a sad face and a scary stop code. I have fixed the Blue Screen of Death on Windows 11 and 10, and here is the good news: most of the time, you can fix a blue screen yourself in a few minutes. In this guide, I’ll show you exactly how, starting with the easy stuff.

Let’s fix it.

Quick answer

To fix a blue screen error in Windows 11 or 10, restart your PC first, then disconnect any new hardware. If it keeps crashing, boot into Safe Mode, uninstall the latest driver or Windows update, and run Startup Repair from the recovery menu. For deeper repairs, run SFC, DISM, and CHKDSK. As a last resort, use Reset this PC and keep your files. Note the stop code on the screen, since it tells you what to target.

What is a blue screen error?

A blue screen error, often called the Blue Screen of Death (BSOD), is Windows shutting down to protect your PC. When something goes so wrong that Windows cannot continue running safely, it stops everything and displays an error screen to prevent damage to your data.

The screen usually shows a sad face, a short message, and a stop code like CRITICAL_PROCESS_DIED, IRQL_NOT_LESS_OR_EQUAL, SYSTEM_SERVICE_EXCEPTION, KERNEL_SECURITY_CHECK_FAILURE, or MEMORY_MANAGEMENT. That code is your biggest clue, so write it down before you do anything else.

One heads-up. Modern versions of Windows 11 are gradually replacing the classic blue screen with a redesigned black restart screen. It looks different, drops the frowning face, and puts the stop code and faulty driver front and center. Do not let the new color throw you. The causes and the fixes below are exactly the same.

Why blue screen errors happen in Windows

From what I have seen, almost every BSOD comes down to one of these:

  • A buggy or outdated driver, especially graphics, storage, or network drivers.
  • A bad Windows update that did not agree with your hardware.
  • Corrupted system files or a damaged Windows image.
  • Failing RAM, a dying hard drive, or an SSD.
  • Overheating or an unstable overclock.
  • Malware messing with system processes.

You do not need to know which one it is right away. Work down the fixes, and one of them will land.

Step by step fixes to fix a blue screen error

Try these in order. The early steps are quick, and they solve most crashes.

1. Restart your PC

If the blue screen appeared once and Windows rebooted, give it a clean restart before anything else.

  • Let Windows restart fully; do not just sleep it.
  • See if you can get back to the desktop.

Why it works: a one-off crash is often a temporary glitch that a fresh boot clears. When to use it: always first. What to expect: if it was a fluke, you are done. If the blue screen returns, keep going.

2. Disconnect external devices

A faulty USB device, dock, or drive can trigger a crash.

  • Unplug printers, external drives, docks, and any gadget you recently added.
  • Restart and watch for the crash.

Why it works: it rules out bad hardware or a bad driver from an accessory. When to use it: if the crashes started after you plugged something in.

3. Boot into Safe Mode

If Windows will not stay stable, Safe Mode loads only the essentials so you can troubleshoot without the crash.

If you can reach the sign-in screen, hold Shift and click Restart. If Windows will not boot at all, turn the PC off and on during startup two or three times to force the recovery menu to appear. Then go to Troubleshoot then Advanced options then Startup Settings, click Restart, and pick Safe Mode with Networking.

Why it works: with third party drivers and apps disabled, you can uninstall whatever is causing the crash. When to use it: whenever the desktop keeps crashing. What to expect: a stripped-down desktop where you can safely make changes.

4. Uninstall a recent driver or Windows update

This is one of the most common real fixes. If the blue screen started right after an update, remove it.

You can do this straight from the recovery menu. Go to Troubleshoot then Advanced options then Uninstall Updates, and choose Uninstall latest quality update or Uninstall latest feature update.

Uninstall Updates lets you roll back the last quality or feature update that triggered the blue screen.

To roll back a driver, open Device Manager in Safe Mode, right-click the device, choose Properties, then the Driver tab, then Roll Back Driver.

Why it works: it undoes the exact change that started the crashes. When to use it: when the timing lines up with an update or a new driver. What to expect: your PC returns to the state it was in before the bad change.

5. Run Startup Repair

If Windows will not boot to the desktop, Startup Repair is the tool built for that.

From the recovery menu, go to Troubleshoot then Advanced options then Startup Repair, and let it run.

Advanced options recovery menu in Windows 11 to fix blue screen boot problems
The Advanced options menu is your toolbox: Startup Repair, Command Prompt, System Restore, and more.

Why it works: it automatically finds and fixes boot problems that keep Windows from loading. When to use it: when you get a blue screen before you even reach the login screen. What to expect: Windows diagnoses the boot and repairs it, then tries to start normally.

6. Run System File Checker (SFC) and DISM

Corrupted system files cause a lot of blue screens. These two commands repair them.

Open Command Prompt as admin (you can find it under Advanced options too), and run each one in order:

  1. sfc /scannow
  2. DISM /Online /Cleanup-Image /RestoreHealth

Restart when they finish.

Why it works: SFC repairs broken system files and DISM fixes the underlying Windows image they come from. When to use it: after driver and update fixes, or when crashes feel random. What to expect: a report of any repairs, then a steadier system.

7. Run CHKDSK to check the drive

A failing drive or bad sectors can crash Windows. CHKDSK checks and repairs the disk.

In an admin Command Prompt, run:

  • chkdsk C: /f /r

Press Y if it asks to schedule on the next restart, then reboot.

Why it works: it finds and fixes file system errors and bad sectors. When to use it: if crashes come with freezing, slow loading, or disk noises. What to expect: a scan on reboot, which can take a while, then a healthier drive.

8. Repair the boot files

If Windows still will not boot after Startup Repair, you can rebuild the boot records by hand.

In the recovery Command Prompt, run these one at a time:

  • bootrec /rebuildbcd
  • bootrec /fixmbr
  • bootrec /fixboot
Command Prompt running bootrec commands to fix blue screen boot errors
Rebuilding the boot files with bootrec when Windows cannot start at all.

Why it works: it rebuilds the boot configuration that tells your PC how to load Windows. When to use it: for boot-related crashes that Startup Repair could not fix. What to expect: confirmation messages, then hopefully a normal boot.

9. Check your RAM

Bad memory is a classic cause of random blue screens.

  • Open Windows Memory Diagnostic from the Start menu.
  • Choose Restart now and check for problems.

Why it works: it flags failing RAM that Windows cannot handle. When to use it: if crashes are random and no software fix helps. What to expect: a scan on reboot, then a result telling you if memory is the problem.

10. Scan for malware, remove overclocks, and update BIOS

A few more targeted checks:

  • Run a full scan with Windows Security or your antivirus, since malware can crash core processes.
  • If you overclock the CPU or GPU, set everything back to stock. Instability shows up as blue screens.
  • On desktops, update your BIOS and chipset drivers only if your maker lists a stability fix, and follow their steps carefully.

11. Use System Restore

If the crashes started recently, System Restore rolls Windows back to a point when it worked.

Go to Advanced options, then System Restore, pick a restore point from before the trouble, and confirm.

Why it works: it reverses recent system changes without touching your files. When to use it: when you know roughly when the crashes began. What to expect: Windows reverts settings and drivers to that earlier date.

12. Reset this PC (keep your files)

If nothing above works, a reset reinstalls Windows fresh while keeping your personal files.

Go to Troubleshoot then Reset this PC, and choose Keep my files.

Reset this PC screen with Keep my files option to fix blue screen as a last resort
Reset this PC with Keep my files reinstalls Windows without deleting your documents and photos.

Why it works: it replaces every system file and removes bad software in one move. When to use it: as a last resort when repairs fail. What to expect: apps get removed and Windows reinstalls, but your files stay. Back up first if you can.

Additional troubleshooting tips

  • Note the stop code. Search the exact code, like SYSTEM_SERVICE_EXCEPTION, to target the right fix fast.
  • Free up disk space. A nearly full drive can cause instability.
  • Keep Windows updated. Once you are stable, install the latest updates for driver and security fixes.
  • Watch temperatures. Overheating causes crashes under load, so clean dust from fans and vents.

Quick tip: If the same blue screen keeps naming one driver, that driver is your culprit. Update it, roll it back, or reinstall it before trying anything drastic.

When the blue screen points to hardware

If you have done a clean reset, run SFC, DISM, and CHKDSK, checked RAM, and it still crashes, the hardware may be failing.

Signs it is hardware:

  • Blue screens at random with no pattern, even after a reset.
  • Crashes tied to a specific drive, stick of RAM, or the GPU.
  • The same PC fails with different Windows installs.

Test one thing at a time. Try one RAM stick, swap the drive, or test the GPU in another PC. If a part crashes everywhere it goes, replace it or claim the warranty.

Conclusion

A blue screen looks scary, but it rarely means your PC is dead. In most cases you can fix a blue screen error by restarting, uninstalling a bad update or driver, running Startup Repair, and repairing system files with SFC and DISM. If those do not hold, a reset that keeps your files almost always does the job.

Work through the steps in order and note that stop code as you go. If you got back to a stable desktop, I would love to know which step fixed it for you.

Frequently asked questions

What causes a blue screen error in Windows?

A blue screen is usually caused by a buggy driver, a bad Windows update, corrupted system files, or failing hardware like RAM or a drive. Overheating, overclocking, and malware can also trigger it. The stop code on the screen points to the specific cause.

How do I fix a blue screen error in Windows 11?

Restart first, then disconnect new hardware. If it continues, boot into Safe Mode, uninstall the latest driver or update, and run Startup Repair from the recovery menu. Then run sfc /scannow, DISM, and CHKDSK. As a last resort, use Reset this PC and keep your files.

Is the Blue Screen of Death turning black in Windows 11?

Yes. Newer versions of Windows 11, starting with 24H2, are replacing the blue crash screen with a black one that shows the stop code and faulty driver more clearly. It is only a visual change. The troubleshooting steps to fix it are the same.

How do I fix a blue screen if Windows will not boot?

Force the recovery menu by turning the PC off and on during startup two or three times. Then use Startup Repair, or uninstall the latest update, from Advanced options. If it still fails, rebuild the boot files with bootrec commands in Command Prompt.

What does the stop code on a blue screen mean?

The stop code, such as CRITICAL_PROCESS_DIED or IRQL_NOT_LESS_OR_EQUAL, names the type of failure. It is the fastest way to target the fix. Write it down and search the exact code to find the specific driver or component to check.

Will resetting my PC delete my files?

Not if you choose Keep my files during Reset this PC. That option removes apps and settings but keeps your personal documents and photos. Remove everything wipes all files, so only pick it if you have a backup or want a clean start.

Can bad RAM cause a blue screen?

Yes. Faulty memory is a common cause of random blue screens. Run Windows Memory Diagnostic and choose Restart now and check for problems. If it finds errors, test one stick at a time to identify the bad module and replace it.

Also Read:

Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Newest
Oldest Most Voted
Scroll to Top