PROBLEM: I need to stop users saving data to a bitlocker usb flash drive that they use to unlock their laptop.
SOLUTION: Use the DiskPart command line utility to enable read only access to the USB flash drive in question.
STEPS:-
- Press the Windows key + R to open the run box.
- Type diskpart and press enter.
- If you receive a UAC prompt asking for permission click Yes.
- At the DISKPART > prompt type list disk and press enter.
- Figure out which is your USB disk based on the size (mine was disk 1) so I typed select disk 1 and pressed enter.
- You can check the attributes for the disk by typing attributes disk.
- To enable disk write protection (making it not possible to save files to the disk) use the command attributes disk set readonly and press enter.
- You’re done! Type exit to quit.
- If you ever wanted to revert back and disable write protection then use the command attributes disk clear readonly and press enter.
Please note that the above method will only enable write protection for that particular usb flash drive on that specific windows machine. If you were to put the same usb flash drive in a different machine you can still write files to it.