Fri, Nov 20 2009 0:06
bradley
Migration Step Thirty-three: Setting a time sync
|
I did this already for the HyperV parent and I guess I forgot to do this on the child SBS 2008. When I demoted the SBS 2003 out, the SBS 2008 now needs this command.
Event
The time service detected a time difference of greater than 5000 milliseconds for 900 seconds. The time difference might be caused by synchronization with low-accuracy time sources or by suboptimal network conditions. The time service is no longer synchronized and cannot provide the time to other clients or update the system clock. When a valid time stamp is received from a time service provider, the time service will correct itself.
It's very easy and we've blogged about this before -- http://msmvps.com/blogs/bradley/archive/2007/01/03/need-to-set-up-the-sbs-box-as-an-authoritative-time-server.aspx
The hardest part is remembering what nist time peer I've used in the past.
1. Click Start, click Run, type cmd , and then press ENTER.
2. At the command prompt, type the following commands in the order that
they are given. After you type each command, press ENTER.
w32tm /config /manualpeerlist: NTP_server_IP_Address ,0x8/syncfromflags:MANUAL
net stop w32time
net start w32time
w32tm /resync
http://www.pool.ntp.org/en/use.html
w32tm /config /manualpeerlist: pool.ntp.org,Ox8/syncfromflags:MANUAL
net stop w32time
net start w32time
w32tm /resync
I had to do that last command twice.

And then we're good to go.
Filed under: Migration