Accurate time on Windows 11 and Windows 10

https://time.is/ - Your time is exact!
As a linux user, it bothered me that my windows 11 and windows 10 time was
often several seconds off. 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




Thanks Thanks

No comments: