Created
August 16, 2022 22:44
-
-
Save DaniloNC/be927dfc3dd3a78535b838e124625b22 to your computer and use it in GitHub Desktop.
Windows dual boot linux settings
This file contains 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
@echo off | |
:: To turn off Fast Startup | |
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /V HiberbootEnabled /T REG_DWORD /D 0 /F | |
:: Realtime clock | |
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TimeZoneInformation" /v RealTimeIsUniversal /d 1 /t REG_DWORD /f | |
:: disable hibernation | |
powercfg.exe /hibernate off |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment