帮忙修改一下这个VBS程序,为什么不能运行?
dimashutdown.exe-s-t120-c"请在2分钟内输入密码!"doa=inputbox("密码:","密码是?",)ifa=123thenexitdoels...
dim a
shutdown.exe -s -t 120 -c "请在2分钟内输入密码!"
do
a=inputbox("密码:","密码是?",)
if a=123 then
exit do
else
msgbox "密码错误",0+16+0+4096,"Error"
end if
loop
shutdown.exe -a
msgbox "密码正确",0+64+0+4096,"身份确认" 展开
shutdown.exe -s -t 120 -c "请在2分钟内输入密码!"
do
a=inputbox("密码:","密码是?",)
if a=123 then
exit do
else
msgbox "密码错误",0+16+0+4096,"Error"
end if
loop
shutdown.exe -a
msgbox "密码正确",0+64+0+4096,"身份确认" 展开
1个回答
展开全部
shutdown.exe -s -t 120 -c "请在2分钟内输入密码!"
shutdown.exe -a
这两句错了,批处理中是这样写,到了vbs就要换成下面这样:
CreateObject("WScript.Shell").Run "Cmd /c shutdown.exe -s -t 120 -c 请在2分钟内输入密码!",0
CreateObject("WScript.Shell").Run "Cmd /c shutdown.exe -a",0
shutdown.exe -a
这两句错了,批处理中是这样写,到了vbs就要换成下面这样:
CreateObject("WScript.Shell").Run "Cmd /c shutdown.exe -s -t 120 -c 请在2分钟内输入密码!",0
CreateObject("WScript.Shell").Run "Cmd /c shutdown.exe -a",0
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询