需求:只在开机时校时,然后停止校时
方案:开机计划任务
把压缩包里2个文件放到c:\windows\目录
然后管理员身份在powershell命令行执行这几句命令
验证了2008R2/2012R2/2016/2019/2022/Win10/Win11 七个系统都适用
schtasks.exe /delete /tn "time sync" /F 2>&1 > $null
schtasks.exe /delete /tn "timesync" /F 2>&1 > $null
schtasks /create /tn "timesync" /XML c:\windows\timesync.xml 2>$null
或
schtasks.exe /delete /tn "time sync" /F 2>&1 > $null
schtasks.exe /delete /tn "timesync" /F 2>&1 > $null
schtasks.exe /create /tn "timesync" /ru System /rl highest /sc ONSTART /delay 0000:59 /tr "cmd.exe /c c:\windows\timesync.bat" /f
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。