New
#70
Quick way to confirm hibernation is disabled:
Run following from command prompt or powershell:
Output should include:Code:powercfg /a
" Hibernate
Hibernation has not been enabled."
I have just created this one liner inCMD Prompt
which will show eitherHibernation is Enabled.
orHibernation is Disabled.
. . .
Code:@echo off & cls & setlocal EnableExtensions & for /f "tokens=3" %a in ('reg query HKLM\SYSTEM\ControlSet001\Control\Power\ ^| find /i "HibernateEnabled "') do if %a==0x1 (echo. & echo Hibernation is Enabled.) else (echo. & echo Hibernation is Disabled.) & pause > nul & exit
![]()
I was diligent as always before posting. Had cycled it off/on, more than once. Also restarted Windows. Reviewed in regedit and in powercfg.cpl many times during the course. Also checked BIOS settings, saw that there is nothing related to power states.
With regard to lack of support by "hiberfile type" as shown in screen snip above: Now, much later in the circus, I repeated powercfg /h type full, it took. As result, powercfg -a and Power Options show hibernation.
MS and slot machine manufacturers hire the same designers.