Windows 8 / Server 2008 set auto time sync to external NTP
Besides using GUI to setup Windows NTP sync source (in fact, in domain controller or some PC under domain, the NTP setup GUI is hidden), you may setup NTP time source via PowerShell (command prompt)
Stop-Service w32time
Start-Service w32time
net stop w32time
net start w32time
(Source)
PowerShell Version:
w32tm /config /manualpeerlist:stdtime.gov.hk /syncfromflags:MANUALStop-Service w32time
Start-Service w32time
Command Prompt version (if you don't have Powershell yet):
w32tm /config /manualpeerlist:stdtime.gov.hk /syncfromflags:MANUALnet stop w32time
net start w32time
(Source)
Comments