VB自动关机命令
onerrorresumenextdimWSHshellAsetWSHshellA=wscript.createobject("wscript.shell")WSHshe...
on error resume next
dim WSHshellA
set WSHshellA = wscript.createobject("wscript.shell")
WSHshellA.run "cmd.exe /c shutdown -r -t "XX" -c ""想停止关机请双击“解除自动关机”",0 ,true
我想在每次这个程序启动是 都能弹出对话框输入一个XX(就是多长时间以后关机)的值
那个输入之后没动静啊 展开
dim WSHshellA
set WSHshellA = wscript.createobject("wscript.shell")
WSHshellA.run "cmd.exe /c shutdown -r -t "XX" -c ""想停止关机请双击“解除自动关机”",0 ,true
我想在每次这个程序启动是 都能弹出对话框输入一个XX(就是多长时间以后关机)的值
那个输入之后没动静啊 展开
4个回答
展开全部
on error resume next
dim WSHshellA
set WSHshellA = wscript.createobject("wscript.shell")
xx=inputbox("请输入关机时间")
WSHshellA.run "shutdown -s -t " & xx & " -c ""想停止关机请双击“解除自动关机”""",1
dim WSHshellA
set WSHshellA = wscript.createobject("wscript.shell")
xx=inputbox("请输入关机时间")
WSHshellA.run "shutdown -s -t " & xx & " -c ""想停止关机请双击“解除自动关机”""",1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
直接一行代码就可以了,没必要用WSH
shell "shutdown -s -t "XX" -c"
shell "shutdown -s -t "XX" -c"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
-r 是重启,关机是-s
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询