Problem
When I tell my computer to sleep, it hibernates instead of sleeping. This occurs regardless of whether I tell it to sleep using the button on my keyboard or using the UI. Interestingly, when it goes to sleep by itself (as a result of user inactivity), it works normally.
Troubleshooting
Here's what I've checked:
- Windows event log confirms that it's supposed to be sleeping:
Event 42, Kernel-Power
withTargetState
andEffectiveState
set to5
. Message in log entry is:
The system is entering sleep.
- Sleep button action is set to Sleep.
- Allow hybrid sleep is set to off.
- Timer-based hibernation is disabled.
For the skeptics
Here's why I think it's hibernating rather than sleeping:
- The HDD indicator light and fans stay on for a few minutes before I see and hear that the computer isn't running.
- Clicking the mouse and pressing keyboard buttons don't wake the computer up. I need to turn it back on using its power button.
- It completes a boot sequence instead of instantly restoring its previous state like it should.
- The HDD indicator light stays on for several minutes after starting up.
- The whole process of "sleeping" and subsequently "waking up" takes several minutes.
Computer set-up/configuration
- Latest updates installed from Windows Update.
- This is a clean OS install done by me straight from an original DVD.
- Using drivers provided automatically by Windows.
Answer
Your system might not be fully compatible with Windows 8/8.1. If you don't need hibernation, you can turn it off entirely:
Open a command prompt as administrator.
Type or paste the following command, and press Enter to run it:
powercfg -h off
Changes are applied immediately.
Remarks
You will regain some disk space which was previously reserver for the hibernation file (
hiberfil.sys
). By default, that's 75% of the installed RAM.The fast startup feature will be disabled, too:
Starting with Windows 8, a fast startup mode is available to start a computer in less time than is typically required for a traditional, cold startup. A fast startup is a hybrid combination of a cold startup and a wake-from-hibernation startup.
Source: Distinguishing Fast Startup from Wake-from-Hibernation
No comments:
Post a Comment