Last week we had a client with the Domain Controller that was off by more than three and a half minutes from the PDC. In case you’re not sure yes that is bad. If it gets to five minutes it can be catastrophically bad.
New DC’s, member servers and even PC’s automatically be configured to use the “DOMHEIR” (Domain Heirchy) with shows in w32tm /query /status
as Stratum: 3 (secondary reference - syncd by (S)NTP)
. However, it is possible for a computer to have its time sync configuration changed and become out of sync which will cause all manor of problems:
The first thing you need to do is ensure that the DC with the PDC emulator role, is set to sync with a reliable time service. To do this run w32tm /query /status
and confirm you see the SOURCE being something reliable like time.nist.gov
or us.pool.ntp.org .
If it is not, then just open a CMD prompt as an Admin and run these commands:
net stop w32time
w32tm /unregister
w32tm /register
w32tm /config /manualpeerlist:"time.nist.gov,0x8" /syncfromflags:manual /reliable:yes /update
net start w32time
w32tm /resync
w32tm /query /status
On the other DC’s check to make sure they are syncing with the PDC. To do this run w32tm /query /status
and confirm you see the SOURCE being listed as your PDC. If it is not, just run these commands.
IN THE COMMANDS BELOW, CHANGE THE “CGYDC03” TO WHATEVER YOUR PDC IS
w32tm /config /manualpeerlist:CGYDC03 /syncfromflags:manual /reliable:no /update
w32tm /resync
then wait 2 or 3 minutes for the time to be corrected. Then run this command to set the your DC to use DOMHEIR (which means DOMAIN HIERARCHY) instead of the specific PDC (in our examples, CGYDC03).
w32tm /config /syncfromflags:domhier /update
w32tm /resync
This website uses cookies.