How to Fix DRIVER_POWER_STATE_FAILURE in Windows 11
The Problem
Your PC blue-screens with DRIVER_POWER_STATE_FAILURE (technical code 0x0000009F), almost always going into sleep, waking from sleep, or shutting down. A driver failed to respond when Windows asked it to change power state, so the kernel gave up waiting.
Wi-Fi adapters, graphics drivers, and SSD/NVMe controllers cause the overwhelming majority. Laptops see this far more than desktops.
PC won't sleep at all rather than crashing? That's a different fix: sleep and hibernation not working. Crashing at shutdown only? See Windows 11 not shutting down or restarting.
Symptoms
- Blue screen reading DRIVER_POWER_STATE_FAILURE on lid close, sleep, or wake.
- Laptop is hot and the fan is running when you open the lid — it crashed inside the bag.
- Event Viewer shows Kernel-Power event 41 with a bugcheck code of
0x9f.
Step 1: Find the Driver That Stalled
- Open Event Viewer → Windows Logs → System and open the BugCheck entry from the crash time.
- Or read the filename on the blue screen itself:
Netwtw*.sys(Intel Wi-Fi),nvlddmkm.sys(NVIDIA),stornvme.sys/iaStorAC.sys(storage),usbxhci.sys(USB controller). - Generate a power report for extra detail — in Terminal (Admin):
Open that file and read the Errors section.powercfg /energy /output C:\energy-report.html
Step 2: Stop Windows Powering Down Your Network Adapter
This one setting fixes a large share of cases.
- Right-click Start → Device Manager → expand Network adapters.
- Right-click your Wi-Fi or Ethernet adapter → Properties → Power Management tab.
- Untick Allow the computer to turn off this device to save power → OK.
- Repeat for every network adapter, and for USB Root Hub entries under Universal Serial Bus controllers.
Step 3: Update the Wi-Fi, Graphics, and Storage Drivers
- Download drivers from the laptop or motherboard manufacturer's support page for your exact model — generic Windows Update versions are often the problem.
- Install chipset first, then Wi-Fi, then graphics, then storage. Restart between them.
- For graphics, remove the old driver cleanly: clean install GPU drivers with DDU.
- Background reading: how to update outdated drivers.
Step 4: Turn Off Fast Startup
Fast Startup mixes shutdown and hibernation, and drivers that mishandle it crash here.
- Control Panel → Power Options → Choose what the power buttons do.
- Click Change settings that are currently unavailable.
- Untick Turn on fast startup (recommended) → Save changes → restart.
Step 5: Reset the Power Plan to Defaults
- Open Terminal (Admin) and run:
powercfg -restoredefaultschemes - Then Control Panel → Power Options → Change plan settings → Change advanced power settings.
- Set PCI Express → Link State Power Management to Off.
- Set Wireless Adapter Settings → Power Saving Mode to Maximum Performance.
- Apply and restart.
Step 6: Update the BIOS and Chipset
Sleep and wake behaviour is largely firmware. On laptops especially, a BIOS update often fixes this outright.
- Find your exact model on the manufacturer's support site.
- Install the latest BIOS/UEFI and chipset package, following their instructions exactly.
- Keep the laptop plugged in for the whole update.
Step 7: Disable Hybrid Sleep and Test
- Control Panel → Power Options → Change plan settings → Change advanced power settings.
- Expand Sleep → set Allow hybrid sleep to Off and Hibernate after to Never.
- Test sleep and wake several times. If it is now stable, reintroduce one setting at a time.
Step 8: Repair System Files
- In Terminal (Admin):
sfc /scannow - Then:
DISM /Online /Cleanup-Image /RestoreHealth - Restart. See repair Windows 11 with SFC and DISM.
What Not to Do
- Don't just disable sleep and call it fixed — a laptop that never sleeps drains its battery and cooks in your bag. See laptop battery draining fast.
- Don't install drivers from third-party updater apps. Use the manufacturer's page.
- Don't skip the BIOS update on a laptop. It is the single most effective fix for power-state bugs.
Still Not Working?
If crashes continue with defaults, current drivers, and updated firmware, suspect the SSD — failing NVMe drives stall on power transitions. Check it with SSD and hard drive health, then consider reinstalling Windows without losing data.
Related stop codes: IRQL_NOT_LESS_OR_EQUAL, DPC_WATCHDOG_VIOLATION, and SYSTEM_SERVICE_EXCEPTION.
Related guides
How to Fix IRQL_NOT_LESS_OR_EQUAL in Windows 11
IRQL_NOT_LESS_OR_EQUAL blue screen on Windows 11? Find the faulty driver, test your RAM, disable overclocks, and stop the crashes with these step-by-step fixes.
How to Fix SYSTEM_SERVICE_EXCEPTION in Windows 11
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.
How to Clean Install GPU Drivers with DDU
Stuttering, black screens, or driver crashes after a GPU update? Use Display Driver Uninstaller to fully remove old drivers and install clean, step by step.
How to Fix PAGE_FAULT_IN_NONPAGED_AREA in Windows 11
PAGE_FAULT_IN_NONPAGED_AREA blue screen on Windows 11? Test RAM, roll back drivers, disable fast startup, and repair system files with these step-by-step fixes.
How to Fix USB Device Not Recognized in Windows 11
USB device not recognized or showing Unknown Device in Windows 11? Reset USB controllers, fix power settings, and get the device detected with these step-by-step fixes.