禁止光盘优盘自动播放(Shell Hardware Detection服务)
Posted 陈晓猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了禁止光盘优盘自动播放(Shell Hardware Detection服务)相关的知识,希望对你有一定的参考价值。
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服务)的主要内容,如果未能解决你的问题,请参考以下文章
一条命令(dd)制作Centos(Linux)优盘(U盘)启动盘