假设我有一台电脑called...StpdPrblm。当我打开命令提示符窗口(域用户、本地管理员)并运行"w32tm /monitor“时,我得到了来自我所有70个域控制器的良好响应。但是,当我运行"w32tm /monitor /computers:StpdPrblm.domain.corp“时,会得到以下输出:
无论我尝试使用/computers:标志查询多少台计算机,我都会从/computers获得相同的响应。到底怎么回事?在谷歌上搜索错误代码毫无帮助。
编辑: StpdPrblm是XP 3。
发布于 2014-10-14 15:01:13
打开命令提示符并运行:
净时间/setsntp:domain_name
然后重新启动似乎已经修复了它。或者,可以执行以下操作来重新启动时间服务:
净停止w32time
净启动w32time
发布于 2016-03-02 10:35:20
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示例文件:https://gist.github.com/thedom85/dbeb58627adfb3d5c3af
我也推荐这个程序:http://www.timesynctool.com/
https://stackoverflow.com/questions/19912905
复制相似问题