Skip to content

Instantly share code, notes, and snippets.

@andyspicer
Created May 5, 2013 11:22
Show Gist options
  • Save andyspicer/5520539 to your computer and use it in GitHub Desktop.
Save andyspicer/5520539 to your computer and use it in GitHub Desktop.
Windows Server Authoritative Time Server registry entry.
; This file adds the necessary registry entries to enable a
; Windows Server to be an authoratative Time Server NTP
; this will allow it to act as the time server for the
; domain. It gets it's time data from the ntp pool servers
;
; 1. Double click this .reg file on the Server
;
; 2. Run net stop w32time && net start w32time
;
;original source url - http://www.konkotech.com/blog/?p=160
;
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config]
“MaxNegPhaseCorrection”=dword:00000e10
“MaxPosPhaseCorrection”=dword:00000e10
“AnnounceFlags”=dword:00000005
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters]
“NtpServer”=”0.us.pool.ntp.org,0×1 1.us.pool.ntp.org,0×1 2.us.pool.ntp.org,0×1 3.us.pool.ntp.org,0×1″
“Type”=”NTP”
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpClient]
“SpecialPollInterval”=dword:00000384
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer]
“Enabled”=dword:00000001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment