Blue Screen of Death: How to Read the Stop Code and Fix It
A blue screen doesn't have to mean disaster. Learning to read the stop code points you straight to the cause — and most BSODs have straightforward fixes.
On this page
A Blue Screen of Death (BSOD) is Windows telling you it hit a problem so serious it had to stop everything to prevent damage. That sounds frightening, but the stop code printed on the screen is actually a useful clue — not just a wall of text.
Step 1: Find the Stop Code
When the blue screen appears, look near the bottom for a line like STOP CODE: MEMORY_MANAGEMENT or a hex value like 0x0000001E. If your PC rebooted before you could read it, Windows saves the information in an event log.
- Press Win + R, type
eventvwr.msc, and press Enter. - Go to Windows Logs > System and look for events with level Critical or Error around the time of the crash.
- Alternatively, open Settings > System > About and search for "Reliability Monitor" in the Start menu — it shows a timeline of crashes with the error code listed.
Step 2: Understand Common Stop Codes
- MEMORY_MANAGEMENT / 0x0000001A — Usually faulty or failing RAM. Run
mdsched.exe(Windows Memory Diagnostic) to test your RAM overnight. - DRIVER_IRQL_NOT_LESS_OR_EQUAL / 0x000000D1 — A driver tried to access memory it shouldn't. Often caused by a recently installed driver. Roll it back in Device Manager.
- CRITICAL_PROCESS_DIED / 0x000000EF — A core Windows process crashed. Run SFC and DISM (see below).
- NTFS_FILE_SYSTEM / 0x00000024 — File system corruption. Run
chkdsk C: /f /rfrom an elevated Command Prompt.
Step 3: Run the Built-in Repair Tools
Open Command Prompt as administrator (right-click the Start button, choose Terminal (Admin)) and run these two commands in order:
sfc /scannowWait for it to finish, then run:
DISM /Online /Cleanup-Image /RestoreHealthBoth commands repair corrupted Windows system files and fix many BSODs on their own.
Step 4: Check for Driver and Windows Updates
Go to Settings > Windows Update and install any pending updates, including optional driver updates. Then open Device Manager, right-click any device with a yellow warning triangle, and choose Update driver.
Step 5: If It Keeps Happening
Frequent BSODs often point to failing hardware — RAM or a dying hard drive. Download and run your drive manufacturer's diagnostic tool to check drive health. If you added new hardware recently, remove it and see whether crashes stop.
Frequently asked questions
My PC blue-screened once and hasn't done it again. Should I be worried?
A single, isolated BSOD is usually not cause for alarm — it can be triggered by a one-off software glitch or a brief power fluctuation. Check Reliability Monitor for the stop code, run SFC /scannow to be safe, and monitor the PC. If crashes recur within a few days, that's when to dig deeper into drivers or hardware.
Can a BSOD corrupt my files?
Rarely. Windows is designed to save open file data before crashing when possible. The bigger risk is a BSOD that happens during a Windows Update installation, which can leave system files in an incomplete state. Running DISM /RestoreHealth after any crash is a good habit to repair any such damage.
Comments & Questions (0)
No comments yet — be the first to ask. Comments appear after review.
Leave a comment
Your comment appears after our team approves it. Or sign in to post faster.