Sync domain controller time with Microsoft NTP servers
Workstation/server clocks wondering? What a pain..
So there are a ton of ways to do this, but this is what how I like to do it.
1. Open an elevated command prompt
2. Check your current time server : w32tm /query /configuration
This should return you something like:
[TimeProviders]
NtpClient (Local)
DllName: C:\Windows\system32\w32time.dll (Local)
Enabled: 1 (Local)
InputProvider: 1 (Local)
AllowNonstandardModeCombinations: 1 (Local)
ResolvePeerBackoffMinutes: 15 (Local)
ResolvePeerBackoffMaxTimes: 7 (Local)
CompatibilityFlags: 2147483648 (Local)
EventLogFlags: 1 (Local)
LargeSampleSkew: 3 (Local)
SpecialPollInterval: 3600 (Local)
Type: NTP (Local)
NtpServer: random.TIME.org (Local)
3. Set your time server : w32tm /config /syncfromflags:manual /manualpeerlist:”0.pool.ntp.org 1.pool.ntp.org 2.pool.ntp.org 3.pool.ntp.org”
4. Mark your time servers as reliable: w32tm /config /reliable:yes
5. Restart time services. net stop w32time -then- net start w32time