We Recommend

Microsoft Windows Registry Guide Microsoft Windows Registry Guide
Get the in-depth information you need to modifyand seamlessly managethe Windows registry. Written for IT professionals and power users, this vital resource reveals little-known registry techniques, tricks, tips, and secrets to make your job easier.


Posted By

Scooter on 03/06/08


Tagged

HKLM NTP


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

wizard04


Network Time Protocol enhancements


Published in: Windows Registry 


Three objectives are accomplished here:

  1. Allow the machine to act as an NTP server on the local network, so you have the option to synchronize all other machines from the one. Handy if all machines must be closely sychronized.

  2. Reduce the NTP polling interval to four hours. The default setting is a week, which is plenty of time to become unsynchronized.

  3. Add more NTP servers and change the default. Most computers are synchronizing with time.windows.com; this massive load causes delays and means that your computer's clock may be a few seconds behind.

  1. Windows Registry Editor Version 5.00
  2.  
  3. ;Allow machine to act as an NTP server on the local network
  4. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters]
  5. "LocalNTP"=dword:00000001
  6.  
  7. ;Reduce NTP polling interval to 4 hours
  8. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpClient]
  9. "SpecialPollInterval"=dword:00003840
  10.  
  11. ;Add more NTP servers to ease load on primary
  12. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers]
  13. @="7"
  14. "1"="time.windows.com"
  15. "2"="time.nist.gov"
  16. "3"="time-a.nist.gov"
  17. "4"="time-b.nist.gov"
  18. "5"="time-a.timefreq.bldrdoc.gov"
  19. "6"="time-b.timefreq.bldrdoc.gov"
  20. "7"="time-c.timefreq.bldrdoc.gov"

Report this snippet 

You need to login to post a comment.