Last active
March 16, 2025 06:36
-
-
Save gianpaolof/bae3ec809c1bff32c7361a617c577710 to your computer and use it in GitHub Desktop.
Turn on/off Fast boot on windows 10 via powershell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Turn on | |
REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /V HiberbootEnabled /T REG_dWORD /D 1 /F | |
Turn off | |
REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /V HiberbootEnabled /T REG_dWORD /D 0 /F | |
https://www.tenforums.com/tutorials/4189-turn-off-fast-startup-windows-10-a.html |
Yep @Fantasillion is right
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power
HiberbootEnabled DWORD
0 = Turn off fast startup
1 = Turn on fast startup
thank u @Fantasillion and @tonylambiris
Actually, should be more like this: https://codeshare.io/KWB3wY
obrigado!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You mixed these 2 around, no? 1 enables and 0 disables.