Query on time changing for domain joined pcs

MSAzure101 121 Reputation points
2020-12-16T11:36:47.1+00:00

Hi guys, have a customer environment with 5 servers all virtualised , with maybe 150 client pcs (very small)

Servers are Windows 2019 and clients are all Windows10

Since the time change in Ireland a few months ago they have noticed the time change on client pcs

DC is virtualised, whats best GPO to run here or is there another action I can do

Thanks in advance

Windows Server 2019
Windows Server 2019
A Microsoft server operating system that supports enterprise-level management updated to data storage.
3,458 questions
Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
10,618 questions
Windows
Windows
A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.
4,747 questions
0 comments No comments
{count} votes

Accepted answer
  1. Vicky Wang 2,646 Reputation points
    2020-12-17T09:33:10.957+00:00

    See what time the domain thinks it is:

    Net time /Domain:domain.name.fqdn
    I found this command useful as it was reported that three computers were all set at different times. I used the domain command and the following command to query all four devices for their time nearly simultaneously.

    See what time each computer says it is:

    Net time \computer-name
    After running the above commands, I found that one of the computers was about a minute and a half ahead of the others which were correctly pulling the domain time. It’s not enough of a difference to cause issues with Kerberos authentications but the computer is part of a fail-over system with logs that would have a hard time syncing up alarms with different timestamps.

    See where the computer is pulling its time from:

    W32tm /query /source
    After running the above command, it returned an IP address that meant nothing to me. It was pulling its time from some other server and that was the source of the problem.

    You can ask Windows for its Windows Time configuration. It’s not very informative if everything is working properly but gives you something to compare to a working computer.

    Hope this information can help you
    Best wishes
    Vicky


3 additional answers

Sort by: Most helpful
  1. Dave Patrick 426.1K Reputation points MVP
    2020-12-16T13:45:49.163+00:00

  2. Dave Patrick 426.1K Reputation points MVP
    2020-12-16T13:52:17.703+00:00

    What issues are you having? Some general info

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


  3. Dave Patrick 426.1K Reputation points MVP
    2020-12-16T14:07:09.03+00:00

    On the problem member you can;

    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

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

    0 comments No comments