Blue screen of death (BSOD) on a laptop with Windows 10 is one of the most frightening errors for users. A sudden failure interrupts work, and a cryptic message with a code like CRITICAL_PROCESS_DIED or IRQL_NOT_LESS_OR_EQUAL rarely makes it clear what exactly went wrong. The reasons may lie in anything: from a driver conflict to overheating CPU or damage to system files.

Unlike desktop PCs, laptops have additional vulnerabilities: limited cooling, built-in video cards (Intel HD Graphics, NVIDIA Optimus), specific drivers for the touchpad or power management. This makes diagnosis difficult. However, in 80% of cases the problem can be solved without contacting a service center - if you act systematically.

In this article we will look at 7 proven methods BSOD elimination, adapted specifically for laptops. You'll learn how to decipher the error code, what diagnostic tools to use, and what to do if Windows refuses to boot even in safe mode. Let's start with the simplest ones and gradually move on to more complex solutions.

1. Decoding the BSOD error code: what the numbers and letters mean

The first thing to do when a blue screen appears is write down the error code. It usually looks like a combination of capital letters and numbers, like this: 0x0000007B or KMODE_EXCEPTION_NOT_HANDLED. This code is the key to understanding the cause of the failure.

The most common errors on laptops with Windows 10:

  • 🔹 IRQL_NOT_LESS_OR_EQUAL — driver conflict (often to blame Wi-Fi or Bluetooth adapters).
  • 🔹 CRITICAL_PROCESS_DIED - critical system processes were suddenly stopped (possibly due to damage ntoskrnl.exe).
  • 🔹 VIDEO_TDR_FAILURE - graphics driver failure (typical for laptops with hybrid graphics Intel + NVIDIA/AMD).
  • 🔹 SYSTEM_THREAD_EXCEPTION_NOT_HANDLED — a problem with the device driver (often after updating Windows).
  • 🔹 DPC_WATCHDOG_VIOLATION — system hangs due to incorrect operation of the SSD/HDD or storage drivers.

To find the exact description of the error:

  1. Go to the site Microsoft Bug Check Code Reference.
  2. Enter your code in the search bar (for example, 0x000000D1).
  3. Pay attention to the section "Cause" - Typical reasons are indicated there.

If Windows boots but the BSOD appears intermittently, use the built-in tool Event Viewer:

  1. Click Win + X → select Computer management.
  2. Go to Event View → Windows Logs → System.
  3. Look for events with a level "Critical" or "Error" and source BugCheck.
📊 How often do you get a blue screen on your laptop?
  • Once every few days
  • Once a week
  • Only after specific actions (games, updates, etc.)
  • First time, I don't know the reason

2. Driver check: the main culprit of BSOD on 60% of laptops

Incorrect or outdated drivers are the most common cause of blue screens. On laptops the problem is complicated by the fact that manufacturers (HP, Dell, Lenovo, Asus) often modify standard drivers to suit their hardware. Installing "native" drivers from the Microsoft website instead of the original ones can lead to conflicts.

How to check drivers:

Open Device Manager (devmgmt.msc)|Check for yellow exclamation marks|Update drivers for video card, Wi-Fi, chipset|Roll back the driver if the error appeared after the update|Remove conflicting devices (for example, virtual VPN adapters)

-->

Pay special attention to:

  • 🖥️ Video drivers - if you have hybrid graphics (Intel + NVIDIA/AMD), update drivers only from the laptop manufacturer's website, and not through GeForce Experience or AMD Adrenalin.
  • 📶 Network adapters - drivers Wi-Fi And Bluetooth from Qualcomm, Intel or Realtek often cause BSOD after Windows updates.
  • 🔋 Power management - driver ACPI may conflict with the power plan (try resetting the plan to "Balanced").

If BSOD appears after updating the driver:

  1. Boot into Safe Mode (hold Shift when rebooting).
  2. Open Device Manager → find the problematic device.
  3. Right click → Properties → Driver → Roll Back.
  4. If a rollback is not available, remove the driver completely and reboot (Windows will install the basic version).
⚠️ Attention: Never use programs to automatically update drivers (for example, Driver Booster or DriverPack Solution). They often install incompatible versions, which leads to BSOD. Download drivers only from the official websites of the laptop or component manufacturer.

For laptops with discrete graphics (NVIDIA/AMD) useful to perform clean driver installation:

  1. Download the latest driver from the manufacturer's website.
  2. Use Display Driver Uninstaller (DDU) to completely remove the old driver (run in safe mode!).
  3. Install the new driver and reboot.

3. Hardware diagnostics: overheating, memory, disk

If the drivers are fine, but the BSOD continues to appear, the problem may lie in hardware. Laptops are especially susceptible to overheating due to their compact bodies and dusty coolers. Also common culprits are faulty RAM or damaged storage.

How to check:

Component Symptoms Diagnostic tool Solution
Central Processing Unit (CPU) BSOD under high load (games, rendering), sudden shutdowns HWMonitor, Core Temp, Prime95 (stability test) Cleaning dust, replacing thermal paste, reducing voltage (undervolting)
Random access memory (RAM) Random BSOD with errors MEMORY_MANAGEMENT or PAGE_FAULT_IN_NONPAGED_AREA Built-in tool mdsched.exe (Windows Memory Diagnostic) Reinstallation of strips, replacement of faulty module
Hard disk (HDD) / SSD BSOD with errors CRITICAL_PROCESS_DIED or NTFS_FILE_SYSTEM, slow work CrystalDiskInfo, chkdsk /f /r, sfc /scannow Disk replacement, sector recovery, Windows reinstallation
Video card (GPU) Artifacts on the screen, BSOD with VIDEO_TDR_FAILURE or NVLDDMKM (for NVIDIA) FurMark (stress test), GPU-Z (temperature monitoring) Cleaning dust, reducing frequencies, replacing thermal paste

Step-by-step instructions for checking your memory:

  1. Click Win + R, enter mdsched.exe and press Enter.
  2. Select Reboot and check.
  3. After rebooting, wait for the test to complete (may take 10-30 minutes).
  4. If you find errors, remove the memory sticks and wipe the contacts with an eraser, then check each stick individually.

To check the disk:

  1. Open Command line as administrator.
  2. Enter the command:
    chkdsk C: /f /r /x

    (replace C: to the letter of your system drive).

  3. Confirm verification at next reboot (Y + Enter).
  4. Restart your laptop and wait for the process to complete (may take several hours).
⚠️ Attention: If CrystalDiskInfo shows status Pred Fail (pre-failure state) for SSD, back up your data immediately. Such a drive can fail at any time, causing loss of information and BSOD.
💡

If your laptop is overheating, try using a cooling pad or limiting the maximum processor frequency in the BIOS settings (option CPU TDP Control or Thermal Management).

4. Restore system files and check for updates

Damaged system files or failed Windows updates are another common cause of BSOD. B Windows 10 There are built-in tools to restore system integrity, but they need to be run correctly.

Recovery methods:

  • 🛠️ SFC (System File Checker) — checks and restores system files.
  • 🔄 DISM (Deployment Image Servicing and Management) — restores the Windows image.
  • 📥 Update Center — sometimes BSOD occurs due to “broken” updates.

How to run SFC:

  1. Open Command line as administrator.
  2. Enter the command:
    sfc /scannow
  3. Wait for it to complete (may take 20-40 minutes).
  4. If errors are found, reboot your laptop.

If SFC doesn't help, use DISM:

  1. On the same command line, run:
    DISM /Online /Cleanup-Image /RestoreHealth
  2. If an error appears 0x800f081f, connect to the Internet and repeat the command.
  3. Once completed, run again sfc /scannow.

If the BSOD appears after updating Windows:

  1. Go to Settings → Update & Security → View update history.
  2. Find the latest update (usually with code KBxxxxxxx).
  3. Click Remove update and reboot.
  4. To prevent re-installation, use the tool Show or hide updates from Microsoft.
What to do if Windows won't boot even in safe mode?

If the laptop does not boot at all, create a bootable USB flash drive with Windows 10 (can be on another PC) and boot from it. In the installation window, select System Restore → Troubleshooting → Command Prompt. Then run the commands:

bootrec /fixmbr

bootrec /fixboot

bootrec /scanos

bootrec /rebuildbcd

This will restore boot records. If it doesn't help, try it Startup Recovery or System Restore to the previous point.

5. BIOS/UEFI settings and power management

Incorrect settings BIOS/UEFI or power plan may cause BSOD, especially on laptops with Intel 8th generation processors and newer. Frequent problems:

  • 🔌 Fast Boot (fast boot) conflicts with some drivers.
  • 🔄 Secure Boot blocks the loading of uncertified drivers.
  • CPU Power Management Settings (For example, C-States or SpeedStep) cause failures when switching frequencies.

How to check BIOS settings:

  1. Reboot your laptop and enter the BIOS (usually the F2, Del or Esc when loading).
  2. Find a section Advanced → Power Management or Boot.
  3. Disable Fast Boot and try enabling/disabling Secure Boot.
  4. For processors Intel turn off Intel SpeedShift Technology (if any) and install C-States in meaning C1.
  5. Save the settings (F10) and reboot.

Also check power plan on Windows:

  1. Open Control Panel → Power Options.
  2. Select a scheme High performance (sometimes Balanced circuit causes BSOD due to aggressive power management).
  3. Click Set up power plan → Change advanced power settings.
  4. In the section Processor power management install Minimum processor state on 100% (temporary solution for test).
⚠️ Attention: On laptops with hybrid graphics (Intel + NVIDIA/AMD) shutdown Secure Boot may cause video driver errors. In this case, update the BIOS to the latest version before changing the settings.

6. Viruses and malware: the hidden cause of BSOD

Malware is rarely the direct cause of a blue screen, but it can damage system files or drivers, ultimately leading to a BSOD. Particularly dangerous:

  • 🕵️ Rootkits — are embedded in the system core and can cause errors KERNEL_SECURITY_CHECK_FAILURE.
  • 💻 Cryptocurrency miners — overload the CPU/GPU, causing overheating and crashes.
  • 📁 Encryptors - damage system files, which leads to CRITICAL_PROCESS_DIED.

How to check the system:

  1. Download Kaspersky Virus Removal Tool or Dr.Web CureIt! (portable versions that do not require installation).
  2. Run a full system scan (preferably in Safe Mode).
  3. Remove any threats found and reboot your laptop.
  4. Check for suspicious processes in Task Manager (sort by CPU or Memory).

If you suspect an infection at the bootloader level:

  1. Create a bootable USB flash drive with Kaspersky Rescue Disk.
  2. Boot from it and perform a full scan.
  3. Pay attention to the files in the folders C:\Windows\System32\drivers And C:\Windows\Temp.

Important: some viruses disguise themselves as system processes (for example, svchost.exe or lsass.exe). If Task Manager shows unusually high resource consumption by such processes - this is a reason for an in-depth check.

7. Last resort: reset Windows and reinstall

If none of the previous methods helped, radical solutions remain: reset Windows 10 or clean reinstallation. On laptops, this often solves the problem, as it removes all accumulated driver and settings conflicts.

Option 1: Reset while saving files

  1. Go to Settings → Update & Security → Recovery.
  2. Click Start under the item Restore your computer to its original state.
  3. Select Save my files (applications and settings will be deleted).
  4. Follow the instructions (reboot required).

Option 2: Clean install of Windows 10

  1. Download Media Creation Tool from the Microsoft website and create a bootable USB flash drive.
  2. Boot from the flash drive and select Install.
  3. At the installation type selection stage, select Custom: Windows installation only.
  4. Delete all partitions on the system drive and create new ones (this will ensure that all remnants of the old system are removed).
  5. After installation first install the drivers from the laptop manufacturer's website, and then Windows updates.
⚠️ Attention: On laptops with pre-installed Windows 10 (For example, HP, Dell, Lenovo) the BIOS often has an option to restore the factory system (for example, F11 when loading). This is faster than a clean install, but will return all the original manufacturer programs (including unnecessary bloatware).

After reinstallation:

  • 🔧 Install the drivers in this order: chipset → video → network adapters → sound → rest.
  • 🚫 Disable automatic driver updates via Windows Update (use gpedit.mscComputer Configuration → Administrative Templates → System → Device Installation).
  • 📥 Download the latest Windows updates, but install them one at a time, rebooting after each one.
💡

If a BSOD appears even after a clean installation of Windows, the problem is almost certainly a hardware problem (RAM, disk, overheating). In this case, the laptop needs to be diagnosed at a service center.

FAQ: Frequently asked questions about BSOD on laptops

🔍 Why does BSOD appear only when playing or rendering?

This is a typical sign problems with video card or overheating. First check the GPU/CPU temperature using HWMonitor or MSI Afterburner. If the temperature exceeds 90°C, clean the laptop from dust and replace the thermal paste. Also try lowering the video card frequencies by 10-15% via MSI Afterburner.

If the temperature is normal, update the video card driver (for laptops with hybrid graphics, download the driver from the laptop manufacturer’s website, not from NVIDIA/AMD).

💻 Can BSOD occur due to connected devices (mouse, flash drive, printer)?

Yes, especially if the device is faulty or has an incompatible driver. Disconnect all external devices (including USB hubs, docking stations, external drives) and check if the error goes away. If the BSOD disappears, connect devices one at a time to identify the culprit.

Most often problems are caused by:

  • Cheap USB-WiFi adapters with uncertified drivers.
  • Old printers or scanners with drivers for Windows 7.
  • Faulty USB drives (especially those with a damaged file system).
⚡ BSOD appears when connected to Wi-Fi or Ethernet. What to do?

This is a typical problem with network drivers. First, update the network card driver from the laptop manufacturer's website. If it doesn't help:

  1. Disable the option in BIOS Wake on LAN (may conflict with power management).
  2. B Device Manager disable the network adapter function Allow this device to turn off to save power (tab Power management).
  3. Try connecting to a different network or use USB-WiFi test adapter.

If the error occurs only with a specific router, try changing the Wi-Fi channel in the router settings (sometimes channels 12-14 conflict).

🔄 After updating the BIOS, a BSOD appeared. How to roll back?

BIOS rollback depends on the laptop manufacturer:

  • ASUS: use the utility WinFlash or a bootable USB flash drive with a previous BIOS version.
  • HP/Dell/Lenovo: on the official website look for the section BIOS Recovery - usually you need to rename the BIOS file to *.fd and put it on the flash drive, then press it Win + B when turned on.
  • Acer: use combination Fn + Esc at boot to launch the recovery tool.

⚠️ Warning: Improper BIOS rollback can render your laptop inoperable. If you are not sure, contact the service center.

📄 Is it possible to recover data from a disk if Windows cannot boot due to BSOD?

Yes, there are several ways:

  1. Connecting the drive to another PC - remove the drive from the laptop and connect it via USB-SATA adapter for a work computer.
  2. Bootable USB flash drive from Live CD - use Ubuntu Live or Hiren’s BootCD to access files.
  3. Recovery via command line — if the disk is not damaged, you can copy files using the command robocopy in Windows Recovery Environment.

If the disk is damaged (for example, CrystalDiskInfo shows Reallocated Sectors Count), use programs like R-Studio or TestDisk for data recovery.