The 'System Thread Exception Not Handled' error is one of the most frustrating Blue Screen of Death (BSOD) issues on Windows 11. It typically occurs when a system thread generates an exception that the error handler fails to catch. In most cases, this is caused by outdated, incompatible, or corrupted hardware drivers, particularly those related to your graphics card or network adapter.
Step 1: Identify the Faulty Driver
Before fixing the error, check if the BSOD screen lists a specific file. Common culprits include:
- nvlddmkm.sys (NVIDIA Graphics Driver)
- amdkmdag.sys (AMD Graphics Driver)
- athrx.sys (Atheros Wireless Driver)
- rtwlane.sys (Realtek Wireless Driver)
If a file is mentioned, you know exactly which driver to target in the following steps.
Step 2: Boot into Safe Mode
If you cannot reach your desktop due to a boot loop, you must enter Safe Mode to make changes.
- Interrupt the Windows boot process three times by holding the power button to trigger Automatic Repair.
- Navigate to Troubleshoot > Advanced options > Startup Settings > Restart.
- Press 4 or F4 to boot in Safe Mode.
Step 3: Update or Reinstall Drivers via Device Manager
Since drivers are the primary cause, managing them through the Device Manager is the most effective solution.
- Right-click the Start button and select Device Manager.
- Expand the section for the suspected hardware (usually Display adapters or Network adapters).
- Right-click the device and select Update driver. Choose "Search automatically for drivers."
- If the error persists, right-click the device again and select Uninstall device. Check the box for "Attempt to remove the driver for this device" and restart your PC. Windows will automatically attempt to reinstall a fresh driver.
Step 4: Use SFC and DISM to Repair System Files
Corrupted system files can lead to thread exceptions. Use Windows' built-in repair tools to fix them.
- Type cmd in the Windows search bar, right-click it, and select Run as Administrator.
- Type
sfc /scannowand press Enter. Wait for the verification to reach 100%. - Once finished, type
DISM /Online /Cleanup-Image /RestoreHealthand press Enter. This will repair the Windows image using official system files.
Step 5: Roll Back Recent Driver Updates
If the error started occurring after a recent hardware update, the new driver may be unstable.
- In Device Manager, right-click your hardware and select Properties.
- Navigate to the Driver tab.
- Click Roll Back Driver. If the button is greyed out, no previous version is available on your system.
Step 6: Rename the Faulty File (Advanced)
If the BSOD identifies a specific .sys file and reinstalling the driver doesn't help, you can manually force Windows to recreate the driver communication.
- Open Command Prompt as an Administrator.
- Type
cd C:\Windows\System32\driversand press Enter. - Type
ren [filename].sys [filename].sys.old(replace [filename] with the file shown on your BSOD, e.g., nvlddmkm.sys.old). - Restart your computer. Windows will look for a fresh copy of the driver during the next boot.
💡 Pro Tip: Keep your software updated to avoid these issues in the future.
Category: #OS