首页 > 编程 > VBScript > 正文

vbs实现恢复暂停的自动启动服务的脚本

2019-10-26 18:01:12
字体:
来源:转载
供稿:网友
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!//" & strComputer & "/root/cimv2")
Set colListOfServices = objWMIService.ExecQuery _
("Select * from Win32_Service Where State = 'Paused' and StartMode = 'Auto'")
For Each objService in colListOfServices
objService.ResumeService()
Next
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选