Fix Power Management Driver Failure on Windows 10/11
Driver failure crashes your PC during sleep or wake-up. We fix it by disabling fast startup and updating power drivers.
You're working on something, step away for coffee, come back, and your PC's stuck on a blue screen with POWER_STATE_FAILURE or 0x0000009F. Or maybe it crashes right after you close the lid. I've seen this on Lenovo ThinkPads and Dell XPS laptops mostly. The trigger is almost always the sleep transition — going into sleep, waking up, or sometimes even just idling.
What causes this error
Windows has a fast startup feature that saves your system state to a file (hiberfil.sys) when you shut down. Sounds smart, right? Problem is, if a driver isn't playing nice with this low-power state, your PC crashes. The suspect is usually your Intel Management Engine Interface (MEI) driver, your chipset driver, or an old graphics driver. Another common cause: your BIOS or UEFI firmware is outdated and doesn't handle modern power states well.
Here's the short version: either a driver can't wake up, or the system can't save its power state properly. The error code 0x0000009F is Windows screaming "I don't know how to sleep safely."
Fix 1: Turn off fast startup (the real fix)
This solves 80% of cases. Fast startup is a known troublemaker for power management driver failures.
- Open Control Panel. Click Power Options.
- On the left, click Choose what the power buttons do.
- Click Change settings that are currently unavailable (you need admin rights).
- Uncheck Turn on fast startup (recommended).
- Click Save changes.
- Restart your PC. Yes, this makes booting a few seconds slower, but it stops the crashes.
Fix 2: Update your Intel Management Engine (MEI) driver
This driver is the biggest troublemaker for sleep/wake issues. If you have an Intel CPU, you need version 11.x or newer (for Windows 10/11).
- Press
Win + Xand select Device Manager. - Look under System devices for Intel Management Engine Interface.
- Right-click it and choose Update driver → Search automatically for drivers.
- If nothing found, go to your laptop manufacturer's support site (Dell, Lenovo, HP) and download the latest MEI driver manually. Don't rely on Windows Update for this one — it's often outdated.
- Install the driver, restart.
Fix 3: Check your graphics driver
Both Intel and NVIDIA/AMD drivers can cause this. If you recently updated, roll back. If you haven't updated in a while, update now.
- In Device Manager, expand Display adapters.
- Right-click your GPU and choose Properties.
- Go to the Driver tab. See the version.
- If it's more than 6 months old, download the latest from the manufacturer's site (NVIDIA, AMD, Intel).
- Install, restart.
Fix 4: Run the Power Troubleshooter
Windows has a built-in tool that checks for common power problems. It's worth a shot.
- Open Settings (
Win + I). - Go to System → Troubleshoot → Other troubleshooters.
- Find Power and click Run.
- Follow the on-screen steps. Restart when done.
Fix 5: Reset your power plan (advanced)
Sometimes corrupt power settings cause the crash. Use the Command Prompt to reset them.
- Open Command Prompt as administrator (search
cmd, right-click, choose Run as administrator). - Type this command and press Enter:
powercfg -restoredefaultschemes - Restart your PC.
- If that doesn't work, try:
powercfg -h off
This disables hibernation entirely. Some users report this as the only thing that works.
Still crashing? Check these next
- BIOS/UEFI update — Visit your motherboard or laptop manufacturer's site. A BIOS update often adds better power state handling. But be careful: updating BIOS can brick your system if done wrong.
- Event Viewer — Press
Win + X→ Event Viewer. Go to Windows Logs → System. Look for errors with ID 41 (Kernel-Power) or 0x9F. The details tell you which driver failed. Note the file name, then search for it. - Clean boot — Temporarily disable all non-Microsoft services and startup programs. If the error stops, a third-party driver (like antivirus or VPN) is causing it. Re-enable services one by one to find the culprit.
- Replace your power supply or battery — If you have a desktop with a failing PSU, or a laptop with a swollen battery, power management can go haywire. Check for physical damage.
I know this error is infuriating — your PC acts like it can't handle the simplest thing, sleeping. But stick with these steps. Disabling fast startup alone fixes most cases. If you're still stuck after this, you might be dealing with a hardware issue. Try a Linux live USB — if it sleeps fine there, the problem is definitely Windows driver related.
Was this solution helpful?