Complicated

The Clock is out of Sync

June 23, 2023 Peter Jr 1 min read

Having the correct time is very important for our work. It helps keep our records straight and ensures everything is done in order. For this reason, date/time is enforced by the Domain and the Group Policy. If a tablet is out of sync from the rest of the Domain, follow these steps:

  1. Run Command Prompt as Administrator.
  2. Enter the following commands:
w32tm /config /syncfromflags:domhier /update

net stop w32time && net start w32time

w32tm /resync

If that alone doesn’t work, try syncing the clock to a source other than the Domain so that the time is correct using this command:

w32tm /config /manualpeerlist:"time.windows.com,0x1" /syncfromflags:manual /reliable:YES /update

Then, run the first set of commands again to reconnect and resync to the Domain.

Leave a comment