By this tutorial you can disable access to USB Flash drive and thus can prevent computer user from using USB removable flash drive to copy and transfer data and files from your PC.
Step 1: Go to Start > Run > and type in regedit and press enter.
Step 2: Locate the following key:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR
Step 3: Now on the right side double click on the value called Start & set it value to 4 & click OK.
Thats it. You have succesfully disabled access to the usb flash drive.
When you need to use your usb flash drive just change the value of Start to 3.
If you're too lazy or newbie just copy & paste these codes into a notepad file and save it with a .reg extension.
Code to Disable access to the usb mass storage drive :
Code to Enable access to the usb mass storage drive :
Please feel free to comment.
Step 1: Go to Start > Run > and type in regedit and press enter.
Step 2: Locate the following key:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR
Step 3: Now on the right side double click on the value called Start & set it value to 4 & click OK.
Thats it. You have succesfully disabled access to the usb flash drive.
When you need to use your usb flash drive just change the value of Start to 3.
If you're too lazy or newbie just copy & paste these codes into a notepad file and save it with a .reg extension.
Code to Disable access to the usb mass storage drive :
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR]
"Start"=dword:00000004
Code to Enable access to the usb mass storage drive :
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR]
"Start"=dword:00000003
Please feel free to comment.