这里是普通文章模块栏目内容页
USB限制脚本(不影响键鼠)
基于注册表方式的USB限制,适合中小企业,不影响USB鼠标键盘打印机等设备!可以在封装系统时加入,或者后期直接在域策略组里调用
 
关闭USB脚本
@echo off 
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies" /v WriteProtect /t reg_dword /d 1 /f 
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR" /v Start /t reg_dword /d 4 /f 
copy %Windir%\inf\usbstor.inf %Windir%\usbstor.inf /y >nul 
copy %Windir%\inf\usbstor.pnf %Windir%\usbstor.pnf /y >nul 
del %Windir%\inf\usbstor.pnf /q/f >nul 
del %Windir%\inf\usbstor.inf /q/f >nul 
 
开启USB脚本
@echo off 
 reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR" /v Start /t reg_dword /d 3 /f
copy %Windir%\usbstor.inf %Windir%\inf\usbstor.inf /y >nul 
copy %Windir%\usbstor.pnf %Windir%\inf\usbstor.pnf /y >nul 
del %Windir%\usbstor.pnf /q/f >nul 
del %Windir%\usbstor.inf /q/f >nul 
3
将以上代码保存为两个BAT文档,然后放进x:\Windows\system32\目录下,比如DisableUSB.bat和EnableUSB.bat 然后直接在运行里面输入指令:DisableUSB (关闭)EnableUSB(开启)