Fast, Honest, Affordable Service. That's Our Promise.

    Computer Repair

    How to Fix the Blue Screen of Death on Windows 11 (Without Losing Your Files)

    Matt @ CT Tech Express
    April 14, 2026
    9 min read
    How to Fix the Blue Screen of Death on Windows 11 (Without Losing Your Files)

    The Blue Screen of Death gets less scary once you know what to look at. In 2026 it's actually a teal-blue with a sad-face emoji, but the panic is the same: did I lose my work? Did my hard drive just fail?

    Usually neither. Most BSOD crashes are caused by drivers, RAM hiccups, or a bad Windows update — all fixable without reinstalling Windows or touching your files. Here's the order I work through them when a laptop comes in crashing.

    First: Read the error. Yes, actually read it.

    Don't just hit restart. The bottom of the BSOD shows a "stop code" — usually something like:

    • MEMORY_MANAGEMENT
    • IRQL_NOT_LESS_OR_EQUAL
    • PAGE_FAULT_IN_NONPAGED_AREA
    • CRITICAL_PROCESS_DIED
    • KERNEL_SECURITY_CHECK_FAILURE

    Take a phone photo of that line. It tells you exactly what subsystem failed.

    There may also be a "What failed" line naming a specific .sys driver file. Photograph that too. nvlddmkm.sys = NVIDIA graphics driver. iastor.sys = Intel storage. ndis.sys = networking. acpi.sys = power management. That filename is your biggest clue.

    Step 1: Note when the crashes started

    This single question solves half my cases. Did the BSODs start:

    • After a Windows Update? → roll back the update (step 4)
    • After installing new software or a driver? → uninstall it (step 3)
    • After a hardware change (new RAM, new SSD)? → reseat or revert it
    • Randomly, with no obvious trigger? → likely hardware (steps 6–7)
    • Every time you do a specific thing (open a particular app, plug in a specific device)? → that's your culprit

    Match the timing of the crashes to a change you made.

    Step 2: Boot into Safe Mode if you're stuck in a crash loop

    If Windows BSODs before you can reach the desktop, you need Safe Mode.

    1. Power on, and as soon as you see the Windows logo, hold the power button to force shutdown. Repeat this three times.
    2. On the fourth boot, Windows enters Automatic Repair mode.
    3. Click Advanced options → Troubleshoot → Advanced options → Startup Settings → Restart.
    4. After restart, press 5 for "Safe Mode with Networking".

    Safe Mode loads only essential drivers, so most BSOD-causing drivers won't activate. From here you can fix the underlying problem.

    Step 3: Uninstall recent software and drivers

    Open Settings → Apps → Installed apps, sort by Install date. Anything installed in the days before the crashes started is suspect — uninstall it.

    For drivers specifically, open Device Manager (Win + X → Device Manager), find the device whose driver was named in the BSOD (graphics card, network adapter, etc.), right-click → Properties → Driver tab → Roll Back Driver.

    If "Roll Back Driver" is grayed out, you can still Uninstall device and reboot — Windows will reinstall a default driver, which is usually more stable than a buggy update.

    Step 4: Roll back a bad Windows Update

    Microsoft ships a lot of updates. Most are fine. Some break things.

    Settings → Windows Update → Update history → Uninstall updates. Look at the most recent quality updates (the ones with KB numbers). Uninstall the one that landed right before the crashes started.

    Then in Settings → Windows Update → Advanced options → Pause updates — pause for a week to keep it from immediately reinstalling. Microsoft typically issues a fixed version within 7–14 days.

    Step 5: Run System File Checker and DISM

    These two built-in tools repair corrupted Windows system files — a common BSOD cause after a sudden power loss or a malware infection.

    Open PowerShell as Administrator (right-click Start → Terminal (Admin)) and run, in order:

    sfc /scannow
    dism /online /cleanup-image /restorehealth
    

    Each takes 10–30 minutes. The DISM command repairs the underlying image that SFC uses. Run SFC again afterward. Reboot. About 1 in 4 BSODs at my shop disappear after this combo.

    Step 6: Test your RAM

    If the stop code mentions MEMORY_MANAGEMENT, PAGE_FAULT, or IRQL_NOT_LESS_OR_EQUAL, suspect the RAM.

    • Built-in tool: type "Windows Memory Diagnostic" in Start. It reboots and runs a 15-minute scan. If it finds errors, swap or reseat your RAM.
    • Better tool: MemTest86 (free, boot from a USB stick). Run a single pass — about 30–45 minutes. Any errors at all means bad RAM.

    If you have two sticks and one tests bad, run with just the good stick to confirm.

    Step 7: Check your storage drive

    If the BSOD mentions disk, storage, iastor.sys, or you see file corruption errors, your drive may be failing.

    Open PowerShell (Admin) and run:

    wmic diskdrive get model,status
    

    You want "OK" for every drive. For deeper checks, download CrystalDiskInfo (free). Look at the Health Status for each drive. Anything other than "Good" — back up immediately. SSDs especially can fail with very little warning once they cross a wear threshold.

    A new 1 TB SSD runs $60–$90 in 2026. A failed drive with no backup runs $400–$1500 for data recovery — if the data is recoverable at all.

    Step 8: Last resort — System Restore or Reset This PC

    If you've exhausted the above and Windows still crashes, two final options:

    System Restore rolls Windows back to a previous restore point without touching your personal files. Settings → System → About → System protection → System Restore. Pick a date before the crashes started.

    Reset This PC → Keep my files reinstalls Windows but preserves your documents. It removes installed apps and drivers, which is exactly what you want if a buggy install is the cause.

    Even with "Keep my files," back up your important data first. I've seen this option fail mid-process and require a clean reinstall.

    For backup strategy, see the 3-2-1 backup approach for home and small office — actually, that's covered in a separate post I haven't published yet. For now: copy critical folders to an external drive or cloud storage before you reset.

    When to call a pro

    You've reseated RAM, rolled back drivers, run SFC/DISM, and Windows still crashes? That's typically a sign of:

    • Failing motherboard component (capacitors, VRMs)
    • Failing CPU or GPU
    • Heat damage from prolonged thermal throttling

    These need a tech with diagnostic tools. See my computer repair cost guide for Connecticut for what's involved.

    If your laptop is so unstable it won't boot to do these steps, you may have a worse problem than a software BSOD — see laptop won't turn on for hardware diagnostics.

    FAQ

    Will fixing BSOD delete my files? No. None of steps 1–7 touch your personal files. Only step 8 ("Reset This PC") removes installed programs — and even then you can keep your documents.

    My computer crashes only when gaming. Is that the same as BSOD? Different cause, usually. Game crashes without a blue screen are usually GPU driver issues, overheating, or a power supply that can't handle peak load. Update your GPU drivers and monitor temps before assuming worse.

    Can a virus cause a Blue Screen of Death? Yes. Rootkits and certain malware can corrupt drivers or kernel files, triggering BSODs. After fixing the immediate cause, run a full malware scan. See how to remove a virus from your computer for the cleanup steps.

    Should I be worried about a single BSOD that didn't repeat? No. A one-off crash with no pattern is usually a cosmic-ray-bit-flip or a momentary driver glitch. Worry when it happens twice in a week.

    Does Windows 11 have more BSODs than Windows 10? Anecdotally about the same, but Windows 11's newer hardware requirements mean fewer people are running it on aging machines where most BSODs happen.


    Tried everything and Windows still crashes? CT Tech Express does free Windows diagnostics in central CT — call (860) 398-9221 or book online. We back up your files first, then fix it.


    Need a Pro to Handle This?

    CT Tech Express handles computer repair, camera installs, and managed IT across central Connecticut. Same-day appointments available.

    Related Articles