# How to Fix SYSTEM_SERVICE_EXCEPTION in Windows 11 URL: https://www.mytechnician.tech/tips/fix-system-service-exception-windows-11/ Published: 2026-07-26 | Author: Ankit Kumar Tags: Windows 11, BSOD, Troubleshooting, Fix, Drivers Summary: SYSTEM_SERVICE_EXCEPTION blue screen crashing Windows 11? Identify the failing driver, roll it back, repair system files, and stop the crashes step by step. Recommended app: PC-Troubleshooter — https://www.mytechnician.tech/apps/windows-troubleshooter/ (Microsoft Store: https://apps.microsoft.com/detail/9N7RWKW8SP24?hl=en-us&cid=mytechnician-web). Optional; every step below uses built-in Windows tools. ## The Problem Windows blue-screens with **SYSTEM_SERVICE_EXCEPTION** (technical code 0x0000003B). A driver or system service tried to do something only the kernel is allowed to do, and Windows stopped rather than let it continue. This is a **driver problem far more often than a hardware problem**. Graphics, webcam, virtualisation, and third-party antivirus drivers are the repeat offenders. The blue screen usually names a `.sys` file — that name is the whole investigation. > **Crash happens only in games?** Check [VIDEO_TDR_FAILURE](https://www.mytechnician.tech/tips/fix-video-tdr-failure-windows-11/) too. **Can't stay booted long enough to fix anything?** Start in [Safe Mode](https://www.mytechnician.tech/tips/how-to-enter-safe-mode-windows-11/). ## Symptoms * Blue screen reading **SYSTEM_SERVICE_EXCEPTION**, often naming a file such as `win32kfull.sys`, `nvlddmkm.sys`, `dxgmms2.sys`, or `ks.sys`. * Crashes when launching a game, joining a video call, or waking from sleep. * Started right after a Windows update or a driver install. ## Step 1: Find the Named Driver 1. Photograph the blue screen text, including the line under the stop code. 2. Or open **Event Viewer** → **Windows Logs** → **System**, sort by time, and open the **BugCheck** entry. 3. Translate the file: * `nvlddmkm.sys` / `atikmdag.sys` / `igdkmd64.sys` — graphics driver * `dxgmms2.sys` / `win32kfull.sys` — graphics subsystem, still usually the GPU driver * `ks.sys` / `usbvideo.sys` — webcam or capture device * `vmm.sys` / `vmci.sys` — virtualisation (Hyper-V, VMware, VirtualBox) * `bd*.sys`, `avg*.sys`, `mbam*.sys` — third-party antivirus ## Step 2: Roll Back the Driver That Changed If the crashes began after an update, undo it. 1. Right-click Start → **Device Manager**. 2. Right-click the device → **Properties** → **Driver** tab → **Roll Back Driver**. 3. If the button is greyed out, choose **Uninstall device**, tick **Attempt to remove the driver**, then restart — Windows reinstalls a generic driver. 4. For graphics, do it properly: [clean install GPU drivers with DDU](https://www.mytechnician.tech/tips/clean-install-gpu-drivers-ddu-windows-11/). ## Step 3: Update the Remaining Drivers Properly 1. Get chipset, storage, network, and audio drivers from your **motherboard or laptop manufacturer's support page**, not from a driver-updater app. 2. Install chipset first, then graphics, then everything else, restarting between the big ones. 3. Detailed method: [how to update outdated drivers](https://www.mytechnician.tech/tips/how-to-update-outdated-drivers/). ## Step 4: Repair Windows System Files 1. Right-click Start → **Terminal (Admin)**. 2. Run: ``` sfc /scannow ``` 3. Then: ``` DISM /Online /Cleanup-Image /RestoreHealth ``` 4. Restart and retest. See [repair Windows 11 with SFC and DISM](https://www.mytechnician.tech/tips/how-to-run-sfc-dism-repair-windows-11/) for what the output means. ## Step 5: Uninstall Third-Party Antivirus Security suites hook deep into the kernel and are a classic source of this stop code. 1. Uninstall the suite with the **vendor's official removal tool**, not just Add/Remove Programs. 2. Restart and run on Microsoft Defender for a day or two. 3. If the crashes vanish, the suite was the cause. Reinstall it fresh or stay on Defender. ## Step 6: Turn Off Virtualisation Features You Don't Use 1. Press `Win + R`, type `optionalfeatures`, press Enter. 2. Untick **Hyper-V**, **Virtual Machine Platform**, and **Windows Hypervisor Platform** if you do not run VMs or WSL. 3. Restart. If you do use WSL or Docker, leave these on and update those tools instead. ## Step 7: Roll Back a Bad Windows Update 1. **Settings** → **Windows Update** → **Update history** → **Uninstall updates**. 2. Remove the most recent quality update and restart. 3. Full procedure, including pausing the update so it does not return immediately: [roll back Windows 11 after a bad update](https://www.mytechnician.tech/tips/fix-windows-11-after-bad-update-rollback/). ## Step 8: Run Driver Verifier (Advanced, Last Resort) Driver Verifier deliberately stresses drivers so the guilty one crashes immediately with its name attached. 1. **Create a restore point first**: [create a system restore point](https://www.mytechnician.tech/tips/create-system-restore-point-windows-11/). 2. Run `verifier` from an admin **Terminal**, choose **Create custom settings** → **Select individual settings from a full list**, enable **Special Pool**, **Force IRQL checking**, and **Pool Tracking**. 3. Choose **Select driver names from a list** and tick only **non-Microsoft** drivers. 4. Restart. Expect crashes — the stop code will now name the bad driver. 5. **Turn it off when finished**: run `verifier /reset` and restart. If the PC will not boot, enter Safe Mode and run the same command. ## What Not to Do * **Don't leave Driver Verifier running.** It is a diagnostic; forgetting it turns your PC into a crash loop. * **Don't use automatic "driver updater" tools.** They install mismatched drivers and cause exactly this crash. * **Don't reinstall Windows first.** This stop code is fixable in almost every case without it. ## Still Not Working? If Verifier points at a driver with no newer version available, remove that device or use a different one. If it points at nothing and crashes continue, test RAM with the steps in [MEMORY_MANAGEMENT](https://www.mytechnician.tech/tips/fix-memory-management-bsod-windows-11/), then consider [reinstalling Windows without losing data](https://www.mytechnician.tech/tips/reinstall-windows-without-losing-data/). Related stop codes: [IRQL_NOT_LESS_OR_EQUAL](https://www.mytechnician.tech/tips/fix-irql-not-less-or-equal-windows-11/), [PAGE_FAULT_IN_NONPAGED_AREA](https://www.mytechnician.tech/tips/fix-page-fault-in-nonpaged-area-windows-11/), and [KERNEL_SECURITY_CHECK_FAILURE](https://www.mytechnician.tech/tips/fix-kernel-security-check-failure-windows-11/). --- Source: https://www.mytechnician.tech/tips/fix-system-service-exception-windows-11/ — My Technician, free Windows 10/11 troubleshooting guides. Related tool: PC-Troubleshooter (PC-Troubleshooter is a system diagnostic and repair tool for Windows 10 and Windows 11—hardware, drivers, network, and common fixes in one app.) — https://www.mytechnician.tech/apps/windows-troubleshooter/ More guides: https://www.mytechnician.tech/llms.txt