NTP for windows
Thanks ThanksAs a linux user, it bothered me that my windows 11 and windows 10 time was often several seconds off. For dual booting you might want to change the hardware clock to UTC. Sugest only this combined with NTP for windows Run cmd as admin, install NTP for windows then reboot: reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation" /v RealTimeIsUniversal /t REG_DWORD /d 1 /f .reg file is: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation] "RealTimeIsUniversal"=dword:00000001 To return to default: reg delete "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation" /v RealTimeIsUniversal /f or reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation" /v RealTimeIsUniversal /t REG_DWORD /d 0 /f .reg file is: Windows Registry Editor Version 5.00 [-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation\RealTimeIsUniversal] If you would like to have more accurate time in windows, Load this in Registry: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config] "FrequencyCorrectRate"=dword:00000002 "MaxPollInterval"=dword:0000000a "MinPollInterval"=dword:00000006 "UpdateInterval"=dword:00000064 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters] "NtpServer"="0.us.pool.ntp.org 1.us.pool.ntp.org 2.us.pool.ntp.org 3.us.pool.ntp.org" [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpClient] "SpecialPollInterval"=dword:00000040 Run these commands in an administrator cmd window. Not a power shell window. Click start, type cmd, then click run as administrator: sc config W32Time start=auto net start W32Time w32tm /query /configuration w32tm /query /status time /t w32tm /resync To Put things back: sc config W32Time start=demand net stop W32Time Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config] "FrequencyCorrectRate"=dword:00000004 "MaxPollInterval"=dword:0000000f "MinPollInterval"=dword:0000000a "UpdateInterval"=dword:00057e40 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters] "NtpServer"="time.windows.com,0x9" [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpClient] "SpecialPollInterval"=dword:00008000
