USB口给禁了,在网管电脑里找到一个批处理文件,求高手们解释一下_百度知...
发布网友
发布时间:2024-10-01 23:26
我来回答
共2个回答
热心网友
时间:2024-10-10 18:53
REM This batch file is used to disable USB storage :: 注释 本批处理用于禁用usb存储设备
ren %windir%\inf\UsbStor.inf UsbStor.inf.backup :: 将%windir%\inf\UsbStor.inf 重命名为 usbstor.inf.backup
ren %windir%\inf\UsbStor.pnf UsbStor.pnf.backup :: 同上
reg update HKLM\system\CurrentControlSet\Services\USBSTOR\start=4 ::更改注册表键值,禁用usb存储设备
reg update HKLM\system\CurrentControlSet\Services\CdRom\AutoRun=0 :: 更改注册表键值 禁用cdrom的自动播放功能
net send %computername% "The USB port was unlocked, please reboot the machine to make it effective. And the guest account was disabled in the same time"
:: 发送信息给 %computername% 账户,信息内容为:”usb 端口已经解除锁定,请重启机器使生效,同时来宾账户被禁用“,解除锁定这句估计是写错了
热心网友
时间:2024-10-10 18:59
不是 那么简单