求:vbs立刻关机代码

要那种 双击VBS 就立刻关机的 代码
2024年11月18日 01:39
有4个网友回答
网友(1):

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

网友(2):

代码如下:dim WSHshellA
set WSHshellA = wscript.createobject("wscript.shell")
WSHshellA.run "cmd.exe /c shutdown -r -t 1 -c

网友(3):

Set ws = CreateObject("Wscript.Shell")ws.run "shutdown /s /t 0"

网友(4):

dim WSHshell
set WSHshell = wscript.createobject("wscript.shell")
WSHshell.run "shutdown -f -s -t 00",0 ,true