用Powershell强制同步Windows主机与Internet time server的时间
摘要:
第一步,判断Windows Time服务是否正在运行,如果没有,则开启它。第二步,强制同步,不知为何,往往第一次会失败,那么就多运行几次好了。Get-Service w32time | Where {$_.status –eq 'Stopped'} | Start-ServiceW32tm /resync /forceW32tm /resync /force参考资料==========https... 阅读全文
posted @ 2019-05-07 11:04 中道学友 阅读(1279) 评论(0) 推荐(0) 编辑