Introduction
One second your PC is running fine; the next it crashes to a blue screen with a sad emoji and the message “Your PC ran into a problem and needs to restart.” That’s the Blue Screen of Death (BSOD) — and it’s one of the most alarming things a Windows user can experience.
The BSOD on Windows 11 is Windows’ emergency shutdown. It kicks in when the system hits an error so serious it can’t keep running safely. The most common culprits are faulty or outdated drivers, corrupted system files, failing RAM, and overheating hardware.
The good news: most BSODs are fixable without reinstalling Windows. Work through the steps below in order and you’ll likely stop the crashes for good.
Quick Answer
To fix the Blue Screen of Death on Windows 11, first write down the stop code shown on the blue screen. Then run Windows Update, update or roll back drivers in Device Manager, and run sfc /scannow in an elevated Command Prompt to repair corrupted files. These three steps resolve the majority of BSODs without a Windows reinstall.
What Causes the Blue Screen of Death on Windows 11?
The BSOD is a safety mechanism, not just a random glitch. Windows halts everything to prevent deeper damage when it detects a critical failure it can’t recover from. Common causes include:
- Outdated or corrupted drivers — the #1 cause, especially after a Windows update or new hardware install
- Corrupted system files — core Windows files that have become damaged or incomplete
- Faulty RAM — a bad memory stick causes unpredictable, hard-to-diagnose crashes
- Overheating — your CPU or GPU running too hot triggers a forced shutdown to protect hardware
- Malware — malicious software that corrupts critical system files
- Incompatible software — a recently installed app or update that conflicts with Windows internals
How to Fix the BSOD on Windows 11: 8 Steps
Step 1: Note the Stop Code
When the blue screen appears, find the stop code near the bottom of the screen — it looks like CRITICAL_PROCESS_DIED, DRIVER_IRQL_NOT_LESS_OR_EQUAL, MEMORY_MANAGEMENT, or similar. Write it down before your PC restarts. This single piece of information points you directly at the cause.
If your PC restarts too quickly to read it, disable automatic restart first:
- Press Windows + I to open Settings.
- Go to System > About, then click Advanced system settings on the right.
- Under Startup and Recovery, click Settings.
- Uncheck Automatically restart and click OK.
Now the blue screen will stay visible long enough to read the stop code.
Step 2: Run Windows Update
Microsoft regularly releases patches that fix known crash bugs and driver conflicts. Running all available updates is the easiest and safest first step.
- Press Windows + I to open Settings.
- Click Windows Update in the left sidebar.
- Click Check for updates and install everything listed.
- Restart your PC when prompted.
Pro tip: Also open Advanced options > Optional updates — driver updates often appear there separately and can resolve a BSOD that the main update list misses. If Windows Update itself won’t run, see our guide on how to fix Windows Update not working on Windows 11.
Step 3: Update or Roll Back Your Drivers
Faulty drivers cause the majority of BSODs. If crashes started right after installing new hardware or running a Windows update, go here first.
To update a driver:
- Right-click the Start button and select Device Manager.
- Expand the relevant category — for example, Display adapters for a GPU-related BSOD, or Network adapters for network driver issues.
- Right-click the device and choose Update driver > Search automatically for drivers.
- Restart your PC after the update completes.
To roll back a driver (if BSODs started immediately after a driver update):
- In Device Manager, right-click the device and select Properties.
- Click the Driver tab, then click Roll Back Driver if the button is available.
Troubleshooting tip: If Device Manager reports the driver is already up to date but crashes continue, visit the manufacturer’s website directly — Intel, NVIDIA, AMD, or Realtek — and download the latest driver from there. Windows sometimes lags weeks behind the manufacturer’s own releases.
Step 4: Repair Corrupted System Files with SFC and DISM
Corrupted Windows files are a common BSOD trigger. Two built-in command-line tools fix this — run them in order for best results.
- Click Start, type
cmd, right-click Command Prompt, and select Run as administrator. - Type
sfc /scannowand press Enter. The scan takes 10–15 minutes — let it finish completely. - Once done, type the command below and press Enter:
DISM /Online /Cleanup-Image /RestoreHealth - Wait for DISM to complete, then restart your PC.
SFC (System File Checker) finds and repairs damaged files. DISM repairs the underlying Windows image that SFC uses as its reference. Always run both — one without the other leaves the job half done.
Troubleshooting tip: If SFC reports errors it couldn’t fix, run DISM first, then run SFC again. DISM needs to repair the image before SFC can use it successfully.
Step 5: Check for Overheating
If your PC blue screens during demanding tasks — gaming, video editing, or after running for a while — heat may be the culprit. Download a free tool like HWMonitor or Core Temp to check your CPU and GPU temperatures while the PC is under load.
- Normal CPU temps under load: up to ~85°C. Sustained temps above 95°C are a warning sign.
- If overheating: clean dust from vents and fans, make sure your PC has room to breathe around it, and verify all fans are spinning correctly.
- On laptops, never use the machine on a soft surface like a bed or sofa — it blocks the vents and can raise temps by 15–20°C in minutes.
Random BSODs combined with freezing or stuttering can also point to software conflicts — see our guide on fixing Windows 11 freezing for related fixes that may also apply.
Step 6: Test Your RAM
Faulty memory sticks trigger stop codes like MEMORY_MANAGEMENT and PAGE_FAULT_IN_NONPAGED_AREA. Windows has a built-in RAM test you can run for free:
- Press Windows + R, type
mdsched.exe, and press Enter. - Choose Restart now and check for problems.
- Your PC will restart and run the memory diagnostic — this takes several minutes.
- After your PC restarts, check results in Event Viewer: press Windows + R, type
eventvwr.msc, go to Windows Logs > Application, and look for the MemoryDiagnostics-Results entry.
If the test reports errors, your RAM likely needs replacing. If you have two sticks installed, try them one at a time to identify which one is faulty.
Step 7: Run a Full Malware Scan
Some malware corrupts core system files and causes repeated BSODs that look like hardware problems. Run a full scan with the built-in Windows Security tool:
- Press Windows + I, go to Privacy & Security > Windows Security.
- Click Virus & threat protection, then Scan options.
- Select Full scan and click Scan now.
- Let the scan finish completely — don’t interrupt it partway through.
Step 8: Use System Restore
If your BSODs started recently — after a new program install, a driver change, or a system update — System Restore can roll Windows back to a point before the problem began, without touching your personal files.
- Press Windows + R, type
rstrui.exe, and press Enter. - Click Next and choose a restore point dated before the crashes started.
- Follow the prompts and let your PC restart through the process — don’t power it off mid-way.
System Restore only reverses system settings and installed programs. Your documents, photos, and personal files are not affected.
Common Mistakes to Avoid
- Ignoring the stop code. The stop code is your most valuable diagnostic clue. Skipping it means troubleshooting blind. Always write it down before anything else.
- Reinstalling Windows immediately. This is rarely necessary. Work through Steps 2–8 first — the vast majority of BSODs are fixable without a full reinstall and without losing your files.
- Running SFC without administrator rights. If you open Command Prompt normally (not as administrator), SFC will fail silently and report success without actually fixing anything. Always right-click and choose “Run as administrator.”
- Running only SFC and skipping DISM. If the Windows image itself is corrupted, SFC can’t use it to repair files. Always follow SFC with a DISM scan — they’re designed to work together.
- Assuming the newest driver is always safe. Occasionally, a fresh driver release introduces new bugs. If rolling back to an older version stops the crashes, stay on it until the manufacturer releases a stable update.
Frequently Asked Questions
Is the Blue Screen of Death serious?
A single BSOD isn’t always critical — it can result from a one-time glitch. Repeated BSODs signal a real underlying problem (faulty driver, bad RAM, or corrupted files) that needs to be fixed promptly.
Will I lose my files after a BSOD?
Files already saved to your drive are almost always safe. Only unsaved work at the exact moment of the crash is lost. Permanent data loss from a BSOD is rare unless your hard drive itself is failing.
What does “Your PC ran into a problem and needs to restart” mean?
This is Windows 11’s standard blue screen message. The critical information is the stop code shown below that line — for example, CRITICAL_PROCESS_DIED — which identifies the specific type of failure that occurred.
Do I need to reinstall Windows to fix a BSOD?
Almost never. Updating drivers, running SFC and DISM, and checking your hardware resolves the vast majority of BSODs. A clean reinstall is a last resort only when every other fix has failed.
Why does my PC blue screen only during games?
Gaming pushes your GPU and CPU to their limits. Blue screens that only happen in games usually point to an outdated graphics driver, a GPU running too hot, or a power supply that can’t deliver enough power under load. Start by updating your GPU driver.
How do I find BSOD crash logs on Windows 11?
Open Event Viewer by pressing Windows + R and typing eventvwr.msc. Navigate to Windows Logs > System and look for events marked Critical or Error around the time of the crash — they often name the exact driver or component that failed.
Can a BSOD damage my PC?
The BSOD itself is a protective mechanism and doesn’t cause damage. However, if the underlying cause is overheating or failing hardware, that root problem can cause lasting damage over time. Fix the cause as soon as possible.
Conclusion
The Blue Screen of Death is alarming, but it’s almost always fixable without reinstalling Windows. Start by noting the stop code, run Windows Update, update or roll back your drivers, and repair system files with SFC and DISM. If crashes persist, check for overheating and test your RAM. Work through the steps in order and you’ll likely put a stop to the crashes for good.
If your PC still feels sluggish after resolving the BSODs, check out our guide on how to free up disk space on Windows 11 — low storage can contribute to system instability and slow recovery after crashes.