Time running ahead by 2 hours in Windows Server 2019(ADDC)

Anand R Menon 286 Reputation points
2022-06-23T10:26:59.91+00:00

Hi Team,

Our ADDC server machine's timezone is set to UTC+2. But the time is still showing 2 hours ahead of the actual "UTC+2" time. Saw the same issue reported by multiple users. Manually setting the correct time is not working as the time is reset to the above-mentioned wrong time once the machine is restarted. Also can we set to update the server time(once corrected) on all connected endpoints in the domain? Please advise. Thanks.

Regards,
Anand R Menon

Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,185 questions
0 comments No comments
{count} votes

Accepted answer
  1. Dave Patrick 426.1K Reputation points MVP
    2022-06-23T12:44:39.247+00:00

    Is this the PDC emulator or another domain controller?

    On the PDC emulator you could

    w32tm /unregister
    net stop w32time
    w32tm /register
    net start w32time
    w32tm /config /manualpeerlist:<ntp ip address> /syncfromflags:manual /reliable:yes /update
    net stop w32time
    net start w32time
    then check
    w32tm /query /source
    w32tm /query /configuration
    https://tf.nist.gov/tf-cgi/servers.cgi

    --please don't forget to upvote and Accept as answer if the reply is helpful--

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Dave Patrick 426.1K Reputation points MVP
    2022-06-24T12:26:21.42+00:00

    Glad to hear, all members should be using NT5DS domain time.

    Some general info

    w32tm /unregister
    net stop w32time
    w32tm /register
    net start w32time
    w32tm /config /syncfromflags:domhier /update
    net stop w32time
    net start w32time
    then check
    w32tm /query /source
    w32tm /query /configuration

    1 person found this answer helpful.