Skip to content

Instantly share code, notes, and snippets.

@DaniloNC
Created August 16, 2022 22:44
Show Gist options
  • Save DaniloNC/be927dfc3dd3a78535b838e124625b22 to your computer and use it in GitHub Desktop.
Save DaniloNC/be927dfc3dd3a78535b838e124625b22 to your computer and use it in GitHub Desktop.
Windows dual boot linux settings
@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