批处理禁用、启用USB设备如此简单

AI权益加码!Claude Code、Cursor等20+工具免费用! 购周边限时加赠Coding Plan Lite,畅享主流AI工具!学习进阶更高效! 阅读详情

    之前大家都用devcon find获取硬件ID(Hardware ID)通过for+find筛选来禁用或启用设备,但其名称不固定也没规律所以任何代码都不具有相对的通用性,我也一直以来因USB设备标准所困惑,本着不达目的誓不罢休的精神,开始寻求USB设备在Windows中的规律及USB设备标准,打开注册表编辑器开始从硬件相关的键值入手以寻找它们的相似之处及规律,最后定位到HKLM/SYSTEM/CurrentControlSet/Enum/USB,一一对比发现USB/Class_XX&SubClass_XX其有一定的规律,于是请出google高手相助,关键词CompatibleIDs在微软网站看到一点相关标准(微软标准并不是全部的标准),呵呵看来有希望了^_^,继续关键词USB Class,哈哈OK了!!www.usb.org 够标准了吧!好了闲话不多,开始分享我的劳动成果;-)

各设备分类标准
00 Use class information in the Interface Descriptors
01 Audio
02 Communications and CDC Control
03 HID (Human Interface Device)
05 Physical
06 Image
07 Printer
08 Mass Storage
09 Hub
0A CDC-Data
0B Smart Card
0D Content Security
0E Video
0F Personal Healthcare
DC Diagnostic Device
E0 Wireless Controller
EF Miscellaneous
FE Application Specific
FF Vendor Specific

英文不好以上不作翻译了

禁用某设备方法devcon.exe disable USB/Class_XX
启用某设备方法devcon.exe enable USB/Class_XX (其中XX就是上面绿色部分序号)
例:
devcon.exe disable USB/Class_08
禁用U盘,即删除U盘,不管你有N个U盘统统一起删除
devcon.exe disable USB/Class_06
禁用数码相机,包括数码相机附带的可移动磁盘
devcon.exe disable USB/Class_03
禁用USB鼠标&键盘
devcon.exe disable USB/Class_ff
禁用摄像头,看你还臭美;-)
禁用&启用USB设备就如此简单

相关工具 微软DevCon 命令行实用工具可替代设备管理器
相关连接:
http://www.microsoft.com/whdc/device/input/HID_HWID.mspx
http://www.usb.org/developers/defined_class/
http://www.cn-dos.net/forum/viewthread.php?tid=35139&fpage=1

最后也希望大家一起收集其他 USB/Class_XX 序号(跟贴)
查询已知或曾安装USB过的USB/Class_XX 序号批处理代码见下

@echo off
for /f "delims=*" %%a in ('reg query "HKLM/SYSTEM/CurrentControlSet/Enum/USB"^|find /i "Vid_"') do (
for /f "delims=*" %%b in ('reg query "%%a"^|find /i "Vid_"') do (
for /f "tokens=3" %%c in ('reg query "%%b"^|find /i "CompatibleIDs"') do (
for /f "tokens=1* delims=REG_SZ" %%d in ('reg query "%%b"^|find /i "DeviceDesc"') do (
for /f "delims=&" %%i in ('echo."%%c"^|find /i "Class"') do echo %%~i 设备名称:%%e
))))
pause



http://tw.streetvoice.com/will6700/songs/album/2968824/
http://tw.streetvoice.com/will6700/songs/album/2968839/
http://tw.streetvoice.com/will6700/songs/album/2968859/
http://tw.streetvoice.com/will6700/songs/album/2968874/
http://tw.streetvoice.com/will6700/songs/album/2968894/
http://tw.streetvoice.com/will6700/songs/album/2968909/
http://tw.streetvoice.com/will6700/songs/album/2968924/
http://tw.streetvoice.com/will6700/songs/album/2968944/
http://tw.streetvoice.com/will6700/songs/album/2968809/
http://tw.streetvoice.com/will6700/songs/album/2968794/
http://tw.streetvoice.com/will6700/songs/album/2968649/
http://tw.streetvoice.com/will6700/songs/album/2968669/
http://tw.streetvoice.com/will6700/songs/album/2968684/
http://tw.streetvoice.com/will6700/songs/album/2968704/
http://tw.streetvoice.com/will6700/songs/album/2968719/
http://tw.streetvoice.com/will6700/songs/album/2968739/
http://tw.streetvoice.com/will6700/songs/album/2968759/
http://tw.streetvoice.com/will6700/songs/album/2968774/
http://tw.streetvoice.com/will6700/songs/album/2968959/
http://tw.streetvoice.com/will6700/songs/album/2968979/
http://tw.streetvoice.com/will6700/songs/album/2969179/
http://tw.streetvoice.com/will6700/songs/album/2969199/
http://tw.streetvoice.com/will6700/songs/album/2969214/
http://tw.streetvoice.com/will6700/songs/album/2969234/
http://tw.streetvoice.com/will6700/songs/album/2969254/
http://tw.streetvoice.com/will6700/songs/album/2969269/
http://tw.streetvoice.com/will6700/songs/album/2969289/
http://tw.streetvoice.com/will6700/songs/album/2969309/
http://tw.streetvoice.com/will6700/songs/album/2969159/
http://tw.streetvoice.com/will6700/songs/album/2969139/
http://tw.streetvoice.com/will6700/songs/album/2968994/
http://tw.streetvoice.com/will6700/songs/album/2969014/
http://tw.streetvoice.com/will6700/songs/album/2969029/
http://tw.streetvoice.com/will6700/songs/album/2969044/
http://tw.streetvoice.com/will6700/songs/album/2969069/
http://tw.streetvoice.com/will6700/songs/album/2969084/
http://tw.streetvoice.com/will6700/songs/album/2969104/
http://tw.streetvoice.com/will6700/songs/album/2969124/
http://tw.streetvoice.com/will6700/songs/album/2968634/
http://tw.streetvoice.com/will6700/songs/album/2968614/
http://tw.streetvoice.com/will6700/songs/album/2968114/
http://tw.streetvoice.com/will6700/songs/album/2968134/
http://tw.streetvoice.com/will6700/songs/album/2968149/
http://tw.streetvoice.com/will6700/songs/album/2968169/
http://tw.streetvoice.com/will6700/songs/album/2968184/
http://tw.streetvoice.com/will6700/songs/album/2968199/
http://tw.streetvoice.com/will6700/songs/album/2968219/
http://tw.streetvoice.com/will6700/songs/album/2968234/
http://tw.streetvoice.com/will6700/songs/album/2968099/
http://tw.streetvoice.com/will6700/songs/album/2968084/
http://tw.streetvoice.com/will6700/songs/album/2967944/
http://tw.streetvoice.com/will6700/songs/album/2967964/
http://tw.streetvoice.com/will6700/songs/album/2967979/
http://tw.streetvoice.com/will6700/songs/album/2967999/
http://tw.streetvoice.com/will6700/songs/album/2968014/
http://tw.streetvoice.com/will6700/songs/album/2968029/
http://tw.streetvoice.com/will6700/songs/album/2968049/
http://tw.streetvoice.com/will6700/songs/album/2968064/
http://tw.streetvoice.com/will6700/songs/album/2968259/
http://tw.streetvoice.com/will6700/songs/album/2968274/
http://tw.streetvoice.com/will6700/songs/album/2968474/
http://tw.streetvoice.com/will6700/songs/album/2968494/
http://tw.streetvoice.com/will6700/songs/album/2968514/
http://tw.streetvoice.com/will6700/songs/album/2968529/
http://tw.streetvoice.com/will6700/songs/album/2968549/
http://tw.streetvoice.com/will6700/songs/album/2968564/
http://tw.streetvoice.com/will6700/songs/album/2968579/
http://tw.streetvoice.com/will6700/songs/album/2968599/
http://tw.streetvoice.com/will6700/songs/album/2968449/
http://tw.streetvoice.com/will6700/songs/album/2968434/
http://tw.streetvoice.com/will6700/songs/album/2968294/
http://tw.streetvoice.com/will6700/songs/album/2968319/
http://tw.streetvoice.com/will6700/songs/album/2968334/
http://tw.streetvoice.com/will6700/songs/album/2968349/
http://tw.streetvoice.com/will6700/songs/album/2968364/
http://tw.streetvoice.com/will6700/songs/album/2968384/
http://tw.streetvoice.com/will6700/songs/album/2968399/
http://tw.streetvoice.com/will6700/songs/album/2968414/
http://tw.streetvoice.com/will6700/songs/album/2967929/
http://tw.streetvoice.com/will6700/songs/album/2970264/
http://tw.streetvoice.com/will6700/songs/album/2969904/
http://tw.streetvoice.com/will6700/songs/album/2969914/
http://tw.streetvoice.com/will6700/songs/album/2969924/
http://tw.streetvoice.com/will6700/songs/album/2969939/
http://tw.streetvoice.com/will6700/songs/album/2969944/
http://tw.streetvoice.com/will6700/songs/album/2969954/
http://tw.streetvoice.com/will6700/songs/album/2969969/
http://tw.streetvoice.com/will6700/songs/album/2969979/
http://tw.streetvoice.com/will6700/songs/album/2969894/
http://tw.streetvoice.com/will6700/songs/album/2969884/
http://tw.streetvoice.com/will6700/songs/album/2969809/
http://tw.streetvoice.com/will6700/songs/album/2969819/
http://tw.streetvoice.com/will6700/songs/album/2969824/
http://tw.streetvoice.com/will6700/songs/album/2969839/
http://tw.streetvoice.com/will6700/songs/album/2969844/
http://tw.streetvoice.com/will6700/songs/album/2969854/
http://tw.streetvoice.com/will6700/songs/album/2969864/
http://tw.streetvoice.com/will6700/songs/album/2969874/
http://tw.streetvoice.com/will6700/songs/album/2969989/
http://tw.streetvoice.com/will6700/songs/album/2969999/
http://tw.streetvoice.com/will6700/songs/album/2970149/
http://tw.streetvoice.com/will6700/songs/album/2970164/
http://tw.streetvoice.com/will6700/songs/album/2970184/
http://tw.streetvoice.com/will6700/songs/album/2970189/
http://tw.streetvoice.com/will6700/songs/album/2970204/
http://tw.streetvoice.com/will6700/songs/album/2970224/
http://tw.streetvoice.com/will6700/songs/album/2970239/
http://tw.streetvoice.com/will6700/songs/album/2970249/
http://tw.streetvoice.com/will6700/songs/album/2970139/
http://tw.streetvoice.com/will6700/songs/album/2970124/
http://tw.streetvoice.com/will6700/songs/album/2970014/
http://tw.streetvoice.com/will6700/songs/album/2970024/
http://tw.streetvoice.com/will6700/songs/album/2970039/
http://tw.streetvoice.com/will6700/songs/album/2970054/
http://tw.streetvoice.com/will6700/songs/album/2970059/
http://tw.streetvoice.com/will6700/songs/album/2970074/
http://tw.streetvoice.com/will6700/songs/album/2970094/
http://tw.streetvoice.com/will6700/songs/album/2970109/
http://tw.streetvoice.com/will6700/songs/album/2969799/
http://tw.streetvoice.com/will6700/songs/album/2969794/
http://tw.streetvoice.com/will6700/songs/album/2969559/
http://tw.streetvoice.com/will6700/songs/album/2969579/
http://tw.streetvoice.com/will6700/songs/album/2969599/
http://tw.streetvoice.com/will6700/songs/album/2969614/
http://tw.streetvoice.com/will6700/songs/album/2969629/
http://tw.streetvoice.com/will6700/songs/album/2969639/
http://tw.streetvoice.com/will6700/songs/album/2969644/
http://tw.streetvoice.com/will6700/songs/album/2969649/
http://tw.streetvoice.com/will6700/songs/album/2969524/
http://tw.streetvoice.com/will6700/songs/album/2969509/
http://tw.streetvoice.com/will6700/songs/album/2969364/
http://tw.streetvoice.com/will6700/songs/album/2969379/
http://tw.streetvoice.com/will6700/songs/album/2969399/
http://tw.streetvoice.com/will6700/songs/album/2969419/
http://tw.streetvoice.com/will6700/songs/album/2969439/
http://tw.streetvoice.com/will6700/songs/album/2969454/
http://tw.streetvoice.com/will6700/songs/album/2969469/
http://tw.streetvoice.com/will6700/songs/album/2969494/
http://tw.streetvoice.com/will6700/songs/album/2969659/
http://tw.streetvoice.com/will6700/songs/album/2969664/
http://tw.streetvoice.com/will6700/songs/album/2969744/
http://tw.streetvoice.com/will6700/songs/album/2969749/
http://tw.streetvoice.com/will6700/songs/album/2969754/
http://tw.streetvoice.com/will6700/songs/album/2969759/
http://tw.streetvoice.com/will6700/songs/album/2969769/
http://tw.streetvoice.com/will6700/songs/album/2969774/
http://tw.streetvoice.com/will6700/songs/album/2969779/
http://tw.streetvoice.com/will6700/songs/album/2969789/
http://tw.streetvoice.com/will6700/songs/album/2969734/
http://tw.streetvoice.com/will6700/songs/album/2969729/
http://tw.streetvoice.com/will6700/songs/album/2969674/
http://tw.streetvoice.com/will6700/songs/album/2969679/
http://tw.streetvoice.com/will6700/songs/album/2969684/
http://tw.streetvoice.com/will6700/songs/album/2969694/
http://tw.streetvoice.com/will6700/songs/album/2969699/
http://tw.streetvoice.com/will6700/songs/album/2969704/
http://tw.streetvoice.com/will6700/songs/album/2969714/
http://tw.streetvoice.com/will6700/songs/album/2969719/
http://tw.streetvoice.com/will6700/songs/album/2969344/
http://tw.streetvoice.com/will6700/songs/album/2966544/
http://tw.streetvoice.com/will6700/songs/album/2966069/
http://tw.streetvoice.com/will6700/songs/album/2966089/
http://tw.streetvoice.com/will6700/songs/album/2966104/
http://tw.streetvoice.com/will6700/songs/album/2966124/
http://tw.streetvoice.com/will6700/songs/album/2966139/
http://tw.streetvoice.com/will6700/songs/album/2966154/
http://tw.streetvoice.com/will6700/songs/album/2966174/
http://tw.streetvoice.com/will6700/songs/album/2966189/
http://tw.streetvoice.com/will6700/songs/album/2966054/
http://tw.streetvoice.com/will6700/songs/album/2966039/
http://tw.streetvoice.com/will6700/songs/album/2965909/
http://tw.streetvoice.com/will6700/songs/album/2965924/
http://tw.streetvoice.com/will6700/songs/album/2965944/
http://tw.streetvoice.com/will6700/songs/album/2965959/
http://tw.streetvoice.com/will6700/songs/album/2965974/
http://tw.streetvoice.com/will6700/songs/album/2965989/
http://tw.streetvoice.com/will6700/songs/album/2966009/
http://tw.streetvoice.com/will6700/songs/album/2966024/
http://tw.streetvoice.com/will6700/songs/album/2966204/
http://tw.streetvoice.com/will6700/songs/album/2966224/
http://tw.streetvoice.com/will6700/songs/album/2966409/
http://tw.streetvoice.com/will6700/songs/album/2966424/
http://tw.streetvoice.com/will6700/songs/album/2966444/
http://tw.streetvoice.com/will6700/songs/album/2966459/
http://tw.streetvoice.com/will6700/songs/album/2966474/
http://tw.streetvoice.com/will6700/songs/album/2966494/
http://tw.streetvoice.com/will6700/songs/album/2966509/
http://tw.streetvoice.com/will6700/songs/album/2966529/
http://tw.streetvoice.com/will6700/songs/album/2966389/
http://tw.streetvoice.com/will6700/songs/album/2966374/
http://tw.streetvoice.com/will6700/songs/album/2966239/
http://tw.streetvoice.com/will6700/songs/album/2966254/
http://tw.streetvoice.com/will6700/songs/album/2966274/
http://tw.streetvoice.com/will6700/songs/album/2966289/
http://tw.streetvoice.com/will6700/songs/album/2966309/
http://tw.streetvoice.com/will6700/songs/album/2966324/
http://tw.streetvoice.com/will6700/songs/album/2966339/
http://tw.streetvoice.com/will6700/songs/album/2966359/
http://tw.streetvoice.com/will6700/songs/album/2965889/
http://tw.streetvoice.com/will6700/songs/album/2965874/
http://tw.streetvoice.com/will6700/songs/album/2965319/
http://tw.streetvoice.com/will6700/songs/album/2965334/
http://tw.streetvoice.com/will6700/songs/album/2965374/
http://tw.streetvoice.com/will6700/songs/album/2965409/
http://tw.streetvoice.com/will6700/songs/album/2965434/
http://tw.streetvoice.com/will6700/songs/album/2965469/
http://tw.streetvoice.com/will6700/songs/album/2965489/
http://tw.streetvoice.com/will6700/songs/album/2965509/
http://tw.streetvoice.com/will6700/songs/album/2965304/
http://tw.streetvoice.com/will6700/songs/album/2965204/
http://tw.streetvoice.com/will6700/songs/album/2960984/
http://tw.streetvoice.com/will6700/songs/album/2960994/
http://tw.streetvoice.com/will6700/songs/album/2960999/
http://tw.streetvoice.com/will6700/songs/album/2961384/
http://tw.streetvoice.com/will6700/songs/album/2961424/
http://tw.streetvoice.com/will6700/songs/album/2965104/
http://tw.streetvoice.com/will6700/songs/album/2965164/
http://tw.streetvoice.com/will6700/songs/album/2965174/
http://tw.streetvoice.com/will6700/songs/album/2965524/
http://tw.streetvoice.com/will6700/songs/album/2965544/
http://tw.streetvoice.com/will6700/songs/album/2965739/
http://tw.streetvoice.com/will6700/songs/album/2965759/
http://tw.streetvoice.com/will6700/songs/album/2965774/
http://tw.streetvoice.com/will6700/songs/album/2965789/
http://tw.streetvoice.com/will6700/songs/album/2965804/
http://tw.streetvoice.com/will6700/songs/album/2965824/
http://tw.streetvoice.com/will6700/songs/album/2965839/
http://tw.streetvoice.com/will6700/songs/album/2965859/
http://tw.streetvoice.com/will6700/songs/album/2965724/
http://tw.streetvoice.com/will6700/songs/album/2965709/
http://tw.streetvoice.com/will6700/songs/album/2965559/
http://tw.streetvoice.com/will6700/songs/album/2965579/
http://tw.streetvoice.com/will6700/songs/album/2965594/
http://tw.streetvoice.com/will6700/songs/album/2965609/
http://tw.streetvoice.com/will6700/songs/album/2965629/
http://tw.streetvoice.com/will6700/songs/album/2965644/
http://tw.streetvoice.com/will6700/songs/album/2965664/
http://tw.streetvoice.com/will6700/songs/album/2965679/
http://tw.streetvoice.com/will6700/songs/album/2960544/
http://tw.streetvoice.com/will6700/songs/album/2967909/
http://tw.streetvoice.com/will6700/songs/album/2967424/
http://tw.streetvoice.com/will6700/songs/album/2967439/
http://tw.streetvoice.com/will6700/songs/album/2967454/
http://tw.streetvoice.com/will6700/songs/album/2967474/
http://tw.streetvoice.com/will6700/songs/album/2967494/
http://tw.streetvoice.com/will6700/songs/album/2967509/
http://tw.streetvoice.com/will6700/songs/album/2967524/
http://tw.streetvoice.com/will6700/songs/album/2967544/
http://tw.streetvoice.com/will6700/songs/album/2967409/
http://tw.streetvoice.com/will6700/songs/album/2967394/
http://tw.streetvoice.com/will6700/songs/album/2967254/
http://tw.streetvoice.com/will6700/songs/album/2967274/
http://tw.streetvoice.com/will6700/songs/album/2967289/
http://tw.streetvoice.com/will6700/songs/album/2967309/
http://tw.streetvoice.com/will6700/songs/album/2967324/
http://tw.streetvoice.com/will6700/songs/album/2967339/
http://tw.streetvoice.com/will6700/songs/album/2967359/
http://tw.streetvoice.com/will6700/songs/album/2967374/
http://tw.streetvoice.com/will6700/songs/album/2967559/
http://tw.streetvoice.com/will6700/songs/album/2967579/
http://tw.streetvoice.com/will6700/songs/album/2967774/
http://tw.streetvoice.com/will6700/songs/album/2967794/
http://tw.streetvoice.com/will6700/songs/album/2967809/
http://tw.streetvoice.com/will6700/songs/album/2967829/
http://tw.streetvoice.com/will6700/songs/album/2967844/
http://tw.streetvoice.com/will6700/songs/album/2967864/
http://tw.streetvoice.com/will6700/songs/album/2967879/
http://tw.streetvoice.com/will6700/songs/album/2967894/
http://tw.streetvoice.com/will6700/songs/album/2967759/
http://tw.streetvoice.com/will6700/songs/album/2967739/
http://tw.streetvoice.com/will6700/songs/album/2967594/
http://tw.streetvoice.com/will6700/songs/album/2967609/
http://tw.streetvoice.com/will6700/songs/album/2967629/
http://tw.streetvoice.com/will6700/songs/album/2967654/
http://tw.streetvoice.com/will6700/songs/album/2967674/
http://tw.streetvoice.com/will6700/songs/album/2967689/
http://tw.streetvoice.com/will6700/songs/album/2967709/
http://tw.streetvoice.com/will6700/songs/album/2967724/
http://tw.streetvoice.com/will6700/songs/album/2967239/
http://tw.streetvoice.com/will6700/songs/album/2967224/
http://tw.streetvoice.com/will6700/songs/album/2966749/
http://tw.streetvoice.com/will6700/songs/album/2966764/
http://tw.streetvoice.com/will6700/songs/album/2966784/
http://tw.streetvoice.com/will6700/songs/album/2966799/
http://tw.streetvoice.com/will6700/songs/album/2966814/
http://tw.streetvoice.com/will6700/songs/album/2966834/
http://tw.streetvoice.com/will6700/songs/album/2966854/
http://tw.streetvoice.com/will6700/songs/album/2966869/
http://tw.streetvoice.com/will6700/songs/album/2966729/
http://tw.streetvoice.com/will6700/songs/album/2966719/
http://tw.streetvoice.com/will6700/songs/album/2966579/
http://tw.streetvoice.com/will6700/songs/album/2966599/
http://tw.streetvoice.com/will6700/songs/album/2966614/
http://tw.streetvoice.com/will6700/songs/album/2966629/
http://tw.streetvoice.com/will6700/songs/album/2966649/
http://tw.streetvoice.com/will6700/songs/album/2966664/
http://tw.streetvoice.com/will6700/songs/album/2966684/
http://tw.streetvoice.com/will6700/songs/album/2966699/
http://tw.streetvoice.com/will6700/songs/album/2966884/
http://tw.streetvoice.com/will6700/songs/album/2966904/
http://tw.streetvoice.com/will6700/songs/album/2967084/
http://tw.streetvoice.com/will6700/songs/album/2967104/
http://tw.streetvoice.com/will6700/songs/album/2967119/
http://tw.streetvoice.com/will6700/songs/album/2967139/
http://tw.streetvoice.com/will6700/songs/album/2967154/
http://tw.streetvoice.com/will6700/songs/album/2967169/
http://tw.streetvoice.com/will6700/songs/album/2967189/
http://tw.streetvoice.com/will6700/songs/album/2967204/
http://tw.streetvoice.com/will6700/songs/album/2967069/
http://tw.streetvoice.com/will6700/songs/album/2967054/
http://tw.streetvoice.com/will6700/songs/album/2966919/
http://tw.streetvoice.com/will6700/songs/album/2966934/
http://tw.streetvoice.com/will6700/songs/album/2966954/
http://tw.streetvoice.com/will6700/songs/album/2966969/
http://tw.streetvoice.com/will6700/songs/album/2966989/
http://tw.streetvoice.com/will6700/songs/album/2967004/
http://tw.streetvoice.com/will6700/songs/album/2967019/
http://tw.streetvoice.com/will6700/songs/album/2967039/
http://tw.streetvoice.com/will6700/songs/album/2966564/



批处理禁用and启用USB接口 @echo off :禁用USB接口 reg add "HKLM\SYSTEM\CurrentControlSet\Services\USBSTOR" /v Start /t reg_dword /d 3 /f reg add "[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies]" /v Writ... 阅读详情

相关推荐

告别设备管理器!用devcon命令批量禁用硬件设备的3种高效方法(含设备ID获取技巧)

本文详细介绍了如何利用Windows自带的devcon命令行工具,高效批量禁用硬件设备,告别繁琐的设备管理器手动操作。文章系统阐述了三种核心方法:命令行直接操作、创建批处理脚本以及集成到Python自动化测试框架,并重点讲解了精准获取设备ID的技巧,帮助开发者和系统管理员实现硬件状态的自动化、可复用管理。

l6m7n8的博客 537

禁止USB批处理脚本.pdf

禁止USB批处理脚本.pdf

【C#】控制设备管理器中设备启用/禁用_20220506

通过C#代码实现设备管理器的启用/停止 引入Manamger程序集,查找到所需设备,控制启停

weixin_45475139的博客 4502

PC网络是时间杀手恶魔,用批处理(bat, powershell)如何快速断掉禁用本机网络适配器(有线LAN无线WLAN, UUSB网卡)(Windows 10)一键禁止上网

批处理快速禁用启用网卡(无线有线网卡都可以用)

我用CV我自豪。 3790

禁用USB总集

在注册表HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies 下新建一个WriteProtect并设置其值为dword 1 完整代码如下: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\C...

weixin_34074740的博客 204

禁用/开启USB批处理命令

:lockusb@regadd"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\usbstor"/vStart/treg_dword/d4/fechoUSB设备禁用成功!!!所有在禁用后插入的USB设备将无法使用!!!pause:unlockusb@regadd"HKEY_LOCAL_MACHI...

weixin_34390105的博客 2580

在Windows XP里,设置USB只读

公司是一家设计公司,领导不想让公司资料泄露出去,便禁用了员工电脑的USB功能,而员工经常有东西需要往电脑上拷贝,这时候把U禁用了却是很麻烦的。 Windows XP中有一个非常不错的新功能:为USB存储设备添加“只读”属性。 具体实现方法如下:进入注册表编辑器,找到HKEY_LOCAL_ MACHINE\SYSTEM\CurrentControlSet\ Control...

weixin_33766805的博客 233

Windows系统通过批处理管理USB存储启用禁用

本章我们将深入探讨如何在Windows系统中管理USB存储设备。从基础的设备识别和配置到高级的策略制定和脚本自动化,我们将逐步引导读者了解如何实现对USB存储设备的全面控制。本章内容不仅面向IT管理员,也适用于希望提高个人计算机安全性的高级用户。批处理脚本,通常指在Windows操作系统中使用的批处理文件。这是一种特殊的文本文件,扩展名为.bat,其中包含了可以由命令提示符(cmd.exe)执行的命令序列。批处理文件允许用户自动化重复性任务,无需手动输入每一条命令,大大提高了工作效率。

weixin_42592399的博客 1280

关于windows的USB外接设备启用禁用的C++实现

一:注意: 1: 外接设备指的是通过usb先连接到windows系统的设备(如:测试盒,usb移动硬,鼠标,键等),其他的我没试过; 2:启用禁用指的是起到和“设备管理器”的“启用”“禁用”一样的功能; 3:此代码只有编译成64位程序才会有效,32位程序无法控制; 二:源代码 注:源代码纯手敲上来的,可能有些拼写错误 ...

qq_34236354的博客 5967

通过注册表管理USB端口启用禁用

注册表是Windows操作系统中用于存储系统和应用程序配置信息的数据库。它是系统的核心组件之一,负责记录系统设置、用户偏好、系统安全信息、硬件配置等多种信息。对于USB端口控制来说,注册表是实现这一功能的关键,因为它可以存储与USB设备相关联的特定设置。注册表由多个层次组成,主要包括以下几部分:根键(HKEYs)

weixin_42611310的博客 2837

全面指南:如何在Windows中禁用USB存储设备

在当今数字化时代,USB存储设备因其便携性和高效性被广泛使用。然而,在某些工作环境如企业或政府机构中,为了防止敏感数据的非授权转移,管理员可能需要限制或完全禁用USB存储功能。通过修改Windows注册表编辑器,可以实现对USB存储设备禁用。本章节将介绍如何通过注册表编辑实现这一目标。

weixin_42097508的博客 1417

win10解除usb禁用_Win10专业版中禁用/启用USB接口操作方法

怎么禁用USB接口?部分用户想将电脑上的USB接口禁用,避免别人将电脑中资料通过USB设备拷贝出去,需要怎么操作呢?接下来小编教大家在Win10系统中禁用/启用USB接口的方法。Win10系统禁用USB接口:将下面的内容复制到记事本中:————————————————————————————————Windows Registry Editor Version 5.00[HKEY_LOCAL_MA...

weixin_39955149的博客 3742

USB禁用与解除

简单的方法,将下列代码复制,另存文件后缀为.bat,点击运行即可。开启代码:@echo offecho 此批处理启用USB接口pauseCOPY %WINDIR%/usbstor.inf %WINDIR%/inf/usbstor.infCOPY %WINDIR%/usbstor.PNF %WINDIR%/inf/usbstor.PNFreg add "HKEY

dragon8299的专栏 3461

光驱,软驱,USB禁用启用

 这几天,由于工作的实际需要,需要对光驱,软驱,USB启用禁用实现控制。参考大家提供的对网卡禁用的代码,实现了光驱,软驱,USB启用禁用。主要实现代码如下:// 必要的头文件和要链接的LIB文件#include #include #pragma comment(lib, "setupapi.lib")#pragma comment(lib, "shlwapi.lib")// device

immcss的专栏 1471

禁用USB设备的脚本

最近公司领导要求客服那边部分电脑禁用USB设备,如U等,但是还得保证鼠标和键能用,经过一番研究,脚本如下: 关闭过程: @echo off reg add "HKEY_LOCAL_ MACHINESYSTEMCurrentControlSet ControlStorageDevicePolicies“ /v WriteProtect /t reg_dword /d ...

weixin_33963594的博客 1959

Windows组策略禁用USB设备指南

组策略是Windows操作系统中用于控制计算机设置和用户配置的一套工具,它以GPO(Group Policy Objects)的形式存在。组策略允许IT管理员集中管理和配置用户和计算机的设置,从而简化系统配置过程,并提高网络的安全性和稳定性。在某些情况下,特定的用户或组可能需要访问USB存储设备来执行其工作职责。为了满足这些需求,我们可以通过组策略定义例外用户或组,从而允许他们不受禁用USB存储设备策略的影响。

weixin_42601547的博客 2009

如何使用Windows自带的PnPUtil命令来禁用/停用和启用硬件设备

每个硬件设备在系统中都有一个唯一的标识符,称为“实例 ID”。你需要先找到目标设备的实例 ID,才能用它来执行操作。实例 ID 的格式通常类似于:操作命令示例列出所有设备查找特定设备pnputil /enum-devices | findstr /i "关键词"禁用设备pnputil /disable-device "<实例ID>"启用设备pnputil /enable-device "<实例ID>"希望这个详细的指南能帮助你成功使用PnPUtil管理硬件设备

2140

VC实现光驱、软驱、USB禁用启用

// 必要的头文件和要链接的LIB文件#include #include #pragma comment(lib, "setupapi.lib")#pragma comment(lib, "shlwapi.lib") // device information set(我把它译为设备信息集)HDEVINFO hDevInfo = NULL

Chinawash 专栏 1241

禁用启用USB存储设备的完整技术方案

组策略是Windows Server操作系统中用于集中管理用户和计算机配置的核心技术之一,广泛应用于企业域环境中。通过组策略,管理员可以对用户桌面环境、安全设置、软件安装、网络访问控制等进行统一配置,从而提升系统管理效率和安全性。使用组策略管理控制台(Group Policy Management Console,GPMC)可以创建、编辑和链接组策略对象。GPO编辑器界面主要由两个部分组成:用户配置(User Configuration)

weixin_34945060的博客 696
上一篇: 域名如何申请与管理
下一篇: 使您成为Windows专家的一些学习习惯
乐桐
博客等级 码龄18年 70粉丝 3原创
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值