码迷,mamicode.com
首页 > 系统相关 > 详细

禁止光盘优盘自动播放(Shell Hardware Detection服务)

时间:2017-02-17 09:44:18      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:win   compute   win32   put   mode   return   ret   next   end   

strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colServiceList = objWMIService.ExecQuery ("Select * from Win32_Service where Name = ‘ShellHWDetection‘")
For Each objService in colServiceList
If objService.State = "Running" Then
objService.StopService()
Wscript.Sleep 5000
End If
errReturnCode = objService.ChangeStartMode("Disabled")
Next

禁止光盘优盘自动播放(Shell Hardware Detection服务)

标签:win   compute   win32   put   mode   return   ret   next   end   

原文地址:http://www.cnblogs.com/liuzhaoyzz/p/6408282.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!