5

I just want to make my pendrive write protected just to make sure, when I insert it public PCs like in cyber cafes in order to just read the files, it doesn't get virus affected. How can I do this?

3 Answers3

13

You could always try locking the drive using diskpart.

Open CMD as admin and type diskpart.

When diskpart loads - type list disk

This will give you a list of drives in your machine.

Select your USB device using the select disk 1 command (where 1 is the number of your USB)

Use attributes disk set readonly to set the drive as read only.

Fazer87
  • 12,965
6

Unless your USB drive has a physical switch, this is not possible. You cannot enforce something like this using a software solution, especially when you do not control the system.

user219095
  • 65,551
4

If your stick uses the NTFS filesystem, you can do the following. If not, consider copying the files off of the drive, then format as NTFS.

Do the following:

  1. Open your explorer and select the driveletter of your USB drive.\
  2. Right click and select Properties
  3. Open the tab Security
  4. Click the Change button, and answer yes to the UAC prompt if applicable.
  5. Look if there's an Everyone user. It is likely not there. If it is, skip step 8.
  6. Click on Add...
  7. Type in Everyone and click Ok
  8. Select the Everyone user
  9. Set a checkmark in the column deny for Write.

From this moment on, no one can change the drive anymore. If you want to make changes, Repeat the above steps and remove the checkbox for write in the deny column.

Although the screenshot is dutch, it is showing the endresult.

enter image description here

LPChip
  • 66,193