I can't get BitLocker to recognize a USB flash drive.
It previously had BitLocker enabled, it was removed via formatting and now I want to re-enable it.
Problem is the option no longer shows up in the right-click context menu.
Nor does the BitLocker management app seem to recognize it as a flash drive.
I formatted the drive a few times. Used NTFS and exFat to no avail.
13 Answers
Using "Disk Management" I deleted the partition from the USB stick and then created a simple volume, using all the disk space, which was then Formatted (not a quick format ) with NTFS.
I removed the drive from the server (2019 Essentials) ensured the Bitlocker Drive Encryption Service was started ( Run > Services.msc). Placed the drive back in the server and encryption was possible via the context (right click) menu. I think this is caused by the partition on the new USB drive being set to "active" and/or there being unused space on the USB stick.
1Had the same issue.
After formatting the USB stick (NO quickformat!) the bitlocker option re-appeared inside the context menu (right click).
Other answers here claims that destructive way of formatting drive is the only way to enable BitLocker for given removable drive. I found this to be not true. In my case simple deactivation of primary (the only?) partition on pendrive did the trick and enabled BitLocker back.
Try following steps:
- Click Start, type
cmd, right-click Command Prompt and select Run as administrator from context menu. - Type
diskpartand hit Enter. - Type
list diskand hit Enter. Locate your removable drive by looking at Size column. - Type
select disk nwherenis number (in Disk ### column) that corresponds to your disk. Hit Enter. - Type
list partitionand hit Enter. Usually your drive will have only one - Type
select partition 1(or other number) and hit Enter. - Type
inactiveto make selected partition inactive and hit Enter. - Type
exittwice and confirm with Enter twice to leave DiskPart and Command Prompt.
The "DiskPart marked the current partition as inactive" should confirm success. ou should now be able to use BitLocker on your removable drive. Open BitBlocker to enable encryption of given removable disk.
1