No hibernate option in Windows 8.1 Pro tablet even after "powercfg -h on"

11

3

The Hibernate option is missing on my Windows 8.1 Pro Update 1 tablet. It's neither in the Settings Charm (Power menu) nor in the Desktop Win+X menu.

Hibernation itself is enabled with powercfg.exe /h on and it actually works if invoked manually via shutdown.exe /h.

There is no Hibernate option available in Control Panel:

enter image description here

How do I get this option listed?

noseratio

Posted 2014-06-05T07:46:23.247

Reputation: 465

please use http://www.askvg.com/how-to-enable-missing-hibernate-option-in-windows-8-power-menu/ its easier and better option than editing registry

– TheVillageIdiot – 2015-06-10T00:18:24.627

1

Is powercfg.exe /h on a replacement to http://www.tekrevue.com/tip/add-hibernation-option-windows-8-1-power-user-menu/

– ta.speot.is – 2014-06-05T07:52:02.287

No, it is not a replacement. Powercfg has to be done first, then those UI manipulations. It my case, there's still no Hibernate option in that list in the Control Panel. – noseratio – 2014-06-05T07:54:04.957

1Try shutdown /h – phuclv – 2014-06-05T08:26:31.080

sorry, I just misread that part – phuclv – 2014-06-05T08:52:37.173

Answers

12

Solved it. The following .REG file enables the Hibernate option for Charm and Win+X menus:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FlyoutMenuSettings]
"ShowHibernateOption"=dword:00000001
"ShowLockOption"=dword:00000001

It's still not listed in Control Panel, but I don't care anymore.

Updated, on another machine I also had to use this .REG file:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power]
"HibernateEnabled"=dword:00000001

And to run this:

powercfg.exe /h on 
powercfg /h /type full

noseratio

Posted 2014-06-05T07:46:23.247

Reputation: 465