I have locked the time on windows with the w32tm command. After I got through 2015 I had to update my Windows time. Although I have the same error at w32tm, here’s how we solved the problem:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | C:\WINDOWS\system32>net time /set Could not locate a time-server. More help is available by typing NET HELPMSG 3912. C:\WINDOWS\system32>w32tm /config /manualpeerlist:"ntp_server" /syncfromflags:manual /reliable:yes /update The command completed successfully. C:\WINDOWS\system32>net stop w32time The Windows Time service is stopping. The Windows Time service was stopped successfully. C:\WINDOWS\system32>net start w32time The Windows Time service is starting. The Windows Time service was started successfully. C:\WINDOWS\system32>w32tm /resync Sending resync command to local computer The following error occurred: Access is denied. (0x80070005) C:\WINDOWS\system32>w32tm /query /status The following error occurred: Access is denied. (0x80070005) C:\WINDOWS\system32>w32tm /query /peers #Peers: 1 Peer: ntp_server State: Pending Time Remaining: 870.9783068s Mode: 0 (reserved) Stratum: 0 (unspecified) PeerPoll Interval: 0 (unspecified) HostPoll Interval: 0 (unspecified) |