首页 > 编程 > VBScript > 正文

VBS 断网30秒后自动关机

2020-06-26 18:23:24
字体:
来源:转载
供稿:网友
只要运行它后,一旦网线被拔掉的话,马上就进入自动关机倒计时,“-t 30”是倒计时的时间,你可以自己调整。
 
复制代码代码如下:

Dim Wsh,objWMIService,colMonitoredEvents 
Set Wsh = WScript.CreateObject("WScript.Shell") 
Set objWMIService = GetObject("winmgmts:/. ootwmi") 
Set colMonitoredEvents = objWMIService.ExecNotificationQuery("Select * from MSNdis_StatusMediaDisconnect") 
Do While True 
Set strLatestEvent = colMonitoredEvents.NextEvent 
Wsh.run "shutdown -s -t 30 -c "&chr(34)&"系统网络断开,机器即将关闭"&chr(34) 
Loop 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表