π ~1 min read
Table of contents
Symptom & Impact
Users and services intermittently fail authentication due to clock skew beyond Kerberos tolerance.
Environment & Reproduction
Windows Server 2019 domain with invalid upstream NTP configuration or VM host time conflicts.
w32tm /query /status
w32tm /monitor
Root Cause Analysis
PDC emulator uses incorrect time source or members sync from unreliable virtualization hosts.
Quick Triage
Identify authoritative time source and check current offset from DCs.
netdom query fsmo
w32tm /query /peers
Step-by-Step Diagnosis
Inspect W32Time configuration on PDC and compare offsets across critical servers.
w32tm /query /configuration
Get-WinEvent -LogName System -MaxEvents 80 | Where-Object ProviderName -eq 'Microsoft-Windows-Time-Service'

Solution β Primary Fix
Set reliable external NTP peers on PDC emulator and force hierarchy resync.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
w32tm /config /manualpeerlist:'0.pool.ntp.org,0x8 1.pool.ntp.org,0x8' /syncfromflags:manual /reliable:yes /update
Restart-Service w32time
w32tm /resync /rediscover

Solution β Alternative Approaches
Use internal hardware NTP appliance if internet NTP is restricted.
w32tm /config /manualpeerlist:'10.10.0.50,0x8' /syncfromflags:manual /update
Verification & Acceptance Criteria
Offsets are within acceptable range and Kerberos errors stop.
w32tm /monitor
Get-WinEvent -LogName System -MaxEvents 30 | Where-Object Message -match 'Kerberos'
Rollback Plan
Revert to previous peer list if new NTP source is unstable.
w32tm /config /syncfromflags:domhier /update
Prevention & Hardening
Audit time configuration after virtualization host updates and DC role changes.
Get-ADDomainController -Filter * | ForEach-Object { w32tm /stripchart /computer:$_.HostName /samples:3 /dataonly }
Related Errors & Cross-Refs
Linked with KRB_AP_ERR_SKEW and AD replication inconsistencies.
Related tutorial: View the step-by-step tutorial for Windows Server 2019.
View all Windows Server 2019 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft Learn: Windows Time service and AD domain time hierarchy.
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.