PC Won't Sleep? Here's How to Fix It Fast
Your PC stays awake when you tell it to sleep. I've fixed this hundreds of times. Here's the real fixes, from a 30-second check to deeper settings.
The 30-Second Fix: Check What's Keeping It Awake
Open a command prompt as admin (Win+X → Terminal (Admin)). Run this:
powercfg /requests
This lists exactly what's blocking sleep. 9 times out of 10 you'll see a network adapter or a media player holding things up. A DRIVER entry means a driver won't release its lock — update that driver pronto. A PROCESS entry? Kill that process in Task Manager (right-click → End Task).
You can also see the last thing that woke your PC:
powercfg /lastwake
If it says Wake History Count - 1 with a device like a mouse or keyboard, that's your culprit. More on that below.
The 5-Minute Fix: Disable Wake Timers and Problem Devices
Disable Wake Timers (The #1 Fix for Random Wakes)
Windows has a feature called wake timers that lets apps and scheduled tasks wake the PC. Sounds great until your PC wakes up at 3AM for a Windows update. Turn it off:
- Open Control Panel → Power Options
- Click Change plan settings next to your active plan
- Click Change advanced power settings
- Expand Sleep → Allow wake timers
- Set both On battery and Plugged in to Disable
Don't bother with the Only important wake timers setting — it's vague and still lets stuff wake the PC. Hard disable it.
Stop Your Mouse and Keyboard From Waking the PC
This is the most common reason a PC stays awake after you put it to sleep — you bump the desk, the mouse twitches, and your PC says 'oh, you need me?'
- Press Win+X → Device Manager
- Expand Mice and other pointing devices
- Right-click your mouse → Properties → Power Management
- Uncheck Allow this device to wake the computer
- Do the same for Keyboards and any USB device you don't want waking the PC
Pro tip: leave the keyboard wake enabled if you want to press a key to wake up. Just disable the mouse — you'll never miss it.
Disable Network Adapter Wake Settings
Network adapters love to wake PCs. Disable that:
- In Device Manager, expand Network adapters
- Right-click your Ethernet or Wi-Fi adapter → Properties → Power Management
- Uncheck Allow this device to wake the computer
- Also uncheck Only allow a magic packet to wake the computer — that setting still lets some traffic wake it
The 15-Minute Fix: Deep Clean Power Settings
Reset Power Plans to Default
If you've messed with power settings over the years (like I have), a reset often fixes weird behavior.
powercfg -restoredefaultschemes
This resets all power plans to Windows defaults. You'll lose any custom power slider settings, but it's worth it. Reboot after running it.
Check for Hybrid Sleep and Fast Startup Issues
Hybrid Sleep is a feature meant for desktops that combines sleep and hibernate. On many systems it causes problems. Disable it:
- Go back to Power Options → Change advanced power settings
- Expand Sleep → Allow hybrid sleep
- Set to Off for both battery and plugged in
Also disable Fast Startup — it's a known troublemaker for sleep states:
- Open Control Panel → Power Options → Choose what the power buttons do
- Click Change settings that are currently unavailable
- Uncheck Turn on fast startup (recommended)
- Save changes
Update Chipset and BIOS Drivers
Sleep issues on modern hardware (especially Ryzen systems pre-2020) were notorious. AMD's chipset drivers fixed a ton of sleep bugs. Intel's newer platforms have similar fixes. Go to your motherboard or laptop manufacturer's support page and grab the latest:
- Chipset drivers
- BIOS/UEFI firmware (check release notes for sleep fixes)
- Network driver (Realtek, Intel, Killer — all had wake bugs)
Don't use Windows Update for this — manufacturers often have newer versions on their site.
Run the Power Troubleshooter (Yes, Really)
I know I said 'skip the fluff,' but the built-in troubleshooter catches some rare cases. Run it once, see if it finds anything, then move on if it doesn't:
msdt.exe /id PowerDiagnostic
Or search Troubleshoot settings → Power → Run. It'll check for things like display driver issues and sleep state conflicts.
Still Not Sleeping? The Nuclear Option
If none of the above worked, you've got a deeper problem. Common causes I've seen after years in IT:
- Faulty driver — run
driverqueryin admin CMD and look for unsigned drivers. Those break sleep - Background apps — services like Spotify, Discord, or Steam can hold a wake lock. Close them fully before sleep
- USB device conflict — unplug everything except mouse and keyboard. See if sleep works. If it does, plug devices back one by one
- BIOS setting — some boards have an ErP Ready or Wake on LAN in BIOS that overrides Windows settings. Check your BIOS power management
One last thing: if you're using a laptop with an Nvidia GPU, open Nvidia Control Panel → Manage 3D Settings → Power management mode → set to Optimal Power (not Maximum Performance). That fixed sleep on half a dozen Dell Precision laptops I managed.
That's the whole playbook. Start with the 30-second check, move to the 5-minute fixes, and only go nuclear if you have to. Your PC will sleep like it's supposed to.
Was this solution helpful?