I recently found that the time was off on one of our servers. Tracked down the domain controller it was using. That DC was pointint to itself for the time source, and the time was off by 3 minutes.
To fix this I pointed the DC to a NIST server by running the following commands.
- Display current configuration: w32tm /query /status
- Update the source: w32tm /config /syncfromflags:manual /manualpeerlist:time-a-www.nist.gov
- Stop the time service: net stop w32time
- Start the time service: net start w32time
- Wait a few minutes and confirm the updated time source: w32tm /query /status