需求:只在开机时校时,然后停止校时
方案:开机计划任务
把压缩包里2个文件放到c:windows目录
然后管理员身份在powershell命令行执行这几句命令
验证了2008R2/2012R2/2016/2019/2022/Win10/Win11 七个系统都适用
代码语言:javascript复制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:windowstimesync.xml 2>$null
或
代码语言:javascript复制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:windowstimesync.bat" /f