π ~1 min read
Table of contents
Symptom & Impact
Clock drift causes Kerberos failures and scheduled tasks to run at incorrect times.
Environment & Reproduction
Windows Time service configured with unreachable external NTP peers.
w32tm /query /configuration
w32tm /query /status
Root Cause Analysis
UDP 123 path is blocked or peers are invalid, preventing synchronization.
Quick Triage
Check sync source and test peer reachability.
w32tm /query /source
Test-NetConnection time.windows.com -Port 123
Step-by-Step Diagnosis
Review time service events and stripchart peer behavior.
Get-WinEvent -LogName System -MaxEvents 80 | Where-Object ProviderName -eq 'Microsoft-Windows-Time-Service'
w32tm /stripchart /computer:time.windows.com /samples:5 /dataonly

Solution β Primary Fix
Configure valid NTP peers and restart W32Time.
Still having issues? Our Network Design team can diagnose and resolve this for you. Get in touch for a free consultation.
w32tm /config /manualpeerlist:'0.pool.ntp.org,1.pool.ntp.org' /syncfromflags:manual /reliable:no /update
Restart-Service w32time
w32tm /resync

Solution β Alternative Approaches
Point member servers to domain hierarchy and PDC emulator to trusted external peers.
w32tm /config /syncfromflags:domhier /update
Verification & Acceptance Criteria
Offset remains within acceptable tolerance and Kerberos errors clear.
w32tm /query /status
klist purge
Rollback Plan
Restore previous time config if application timestamp dependencies are affected.
w32tm /unregister
w32tm /register
Prevention & Hardening
Monitor drift and enforce consistent time hierarchy policy.
w32tm /monitor
Related Errors & Cross-Refs
Related to KRB_AP_ERR_SKEW and AD replication latency issues.
Related tutorial: View the step-by-step tutorial for Windows Server 2016.
View all Windows Server 2016 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft W32Time configuration and domain time hierarchy best practices.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.