vbs代码如下:
'═════代═══码═══开═══始═════
set ws=CreateObject("wscript.shell")
do
if datediff("s","22:32:00",time())>0 then
ws.run "cmd /c shutdown -s -t 0",0
exit do
end if
wscript.sleep 1000
loop
'═════代═══码═══结═══束═════
用windows计划任务
新建一个任务
触发器时间设置为每天22:32
动作设置为 执行 C:\Windows\System32\shutdown.exe 参数 -s (C:\Windows\System32\shutdown.exe -s) 相当于 命令 shutdown -s