Time Sync Settings
This article gives the commands to set the Time Authority and runs a sync for the Windows Clock
To be executed in Powershell or Command Prompt
Check current time and date
get-date -format "{dd-MMM-yyyy HH:mm}"
Update Time Sync Server
Method 1
w32tm /config /manualpeerlist:pool.ntp.org /syncfromflags:MANUAL
Stop-Service w32time
Start-Service w32time
w32tm /resync
w32tm /query /status
Method 2
Another method to do the same as the above from Command Line
net stop w32time
w32tm /config /syncfromflags:manual /manualpeerlist:"time.windows.com time.nist.gov"
w32tm /config /reliable:yes
net start w32time
w32tm /resync