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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank u @Fantasillion and @tonylambiris