可以定时自动关机的vbs脚本
作者 佚名
来源 ASP编程
浏览
发布时间 2013-07-09
复制代码 代码如下: Dimmytime,myout1,myout2 mytime=null mytime=InputBox("请输入定时时间(格式20:10:05)"&vblf&"如果想倒计时关机,请输入倒计时时间"&vblf&"(单位/分钟)"&vblf&"输入‘xxx''可以马上关机"&vblf&"退出点‘取消''","定时关机","1") Setwshshell=wscript.createobject("wscript.shell") IfIsNumeric(mytime)=FalseThen IfIsDate(mytime)=TrueThen wshshell.run"at"&mytime&"shutdown-s"''定时关机在任务列表中 myout1=MsgBox("定时成功!电脑将在"&mytime&"关机!放弃关机请点‘取消''!",vbokcancel,"定时关机") Ifmyout1=vbcancelThen wshshell.run"at/delete/y" MsgBox"关机已取消!",64,"定时关机" EndIf Else Ifmytime="xxx"Then wshshell.run"shutdown-s-t0" EndIf MsgBox"输入错误!请重新输入!",64,"定时关机" EndIf Else Ifmytime>600Ormytime<=0Then MsgBox"输入错误!倒计时不能多于10小时(600分钟)!",64,"定时关机" wscript.quit EndIf wshshell.run"shutdown-s-t"&mytime*60 myout2=MsgBox("设置成功!电脑将在"&mytime&"分钟后关机!放弃关机请点‘取消''!",vbokcancel,"定时关机") Ifmyout2=vbcancelThen wshshell.run"shutdown-a" MsgBox"关机已取消!",64,"定时关机" EndIf EndIf 复制代码 代码如下: setdiaolei=createobject("wscript.shell") dimshijian,guanji,hua shijian=time hua=inputbox("请输入你要用什么单位关机1代表分钟2代表小时3代表天") ifhua=1then guanji=inputbox("请输入你要几分钟后关机") ifdatediff("m",shijian,time)>=guanjithen diaolei.run"rundll32.exeuser.exe,exitwindows" diaolei.run"shutdown-s-t0" elseifhua=2then guanji=inputbox("请输入你要几小时后关机") ifdatediff("h",shijian,time)>=guanjithen diaolei.run"rundll32.exeuser.exe,exitwindows" diaolei.run"shutdown-s-t0" elseifhua=3then guanji=inputbox("请输入你要几天后关机") ifdatediff("d",shijian,time)>=guanjithen diaolei.run"rundll32.exeuser.exe,exitwindows" diaolei.run"shutdown-s-t0" endif |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
关于可以定时自动关机的vbs脚本的所有评论