下面的代码 100% 零秒关机! wscript.CreateObject("wscript.shell").run "shutdown /s /t 0" 解释: /s是关机,可以弄为/L(注销),/R(重启) /t 0 是指在指令 发出后0秒执行,如果是/t 10,就是10秒后再执行 如果你想得到更全面的解释,请在运行里输入cmd,在Cmd下输入shutdown /? 就可以得到shutdown命令的使用帮助了
代码如下:dim WSHshellA
set WSHshellA = wscript.createobject("wscript.shell")
WSHshellA.run "cmd.exe /c shutdown -r -t 1 -c
Set ws = CreateObject("Wscript.Shell")ws.run "shutdown /s /t 0"
dim WSHshell
set WSHshell = wscript.createobject("wscript.shell")
WSHshell.run "shutdown -f -s -t 00",0 ,true