Configure Windows time with high (sub seconds) precision

前端 未结 5 2177
执念已碎
执念已碎 2021-01-07 05:51

http://time.is/ is constantly reporting my system clock as several seconds off (usually ahead) even if I freshly force synchronization of windows clock with some of the inte

5条回答
  •  旧巷少年郎
    2021-01-07 06:25

        net stop w32time
        w32tm /config /syncfromflags:manual /manualpeerlist:"0.it.pool.ntp.org 1.it.pool.ntp.org 2.it.pool.ntp.org 3.it.pool.ntp.org"
        net start w32time
        w32tm /config /update
        w32tm /resync /rediscover
    

    .BAT Sample File :https://gist.github.com/thedom85/dbeb58627adfb3d5c3af

    I also recommend this program :http://www.timesynctool.com/

提交回复
热议问题