BitLocker FVE_E_FAILED_WRONG_FS 0X80310013 Fix
BitLocker won't encrypt because the drive uses the wrong file system. The fix is to convert to NTFS using convert.exe or reformat. Quick: open Command Prompt as admin, type <code>convert C: /fs:ntfs</code>.
Quick Answer
Open Command Prompt as admin and run convert C: /fs:ntfs (replace C with your drive letter). That'll convert FAT32 or exFAT to NTFS without wiping data. Then enable BitLocker normally.
Why This Happens
BitLocker only works with NTFS file systems. If you've got a USB drive formatted as exFAT or an old FAT32 partition, Windows won't even start encryption. I saw this last month on a client's external SSD that came pre-formatted as exFAT for Mac compatibility. Drove them nuts because they thought the drive was dead. The error code 0X80310013 is just BitLocker's way of saying 'I can't touch this — wrong file system.'
The Main Fix: Convert to NTFS
Step 1: Identify the Drive
Open File Explorer. Right-click the drive. Properties. Check the 'File system' line. If it says FAT32, exFAT, or anything other than NTFS, you're in the right place.
Step 2: Convert Without Losing Data
This is the cleanest method. No reformatting, no backups required.
- Press Windows key + X and select 'Command Prompt (Admin)' or 'Windows Terminal (Admin)'.
- Type
convert D: /fs:ntfs(replace D with your drive letter). - Press Enter. If the drive is in use, it'll ask to dismount or schedule at next reboot. Type Y and reboot.
That's it. The conversion runs silently. On a 1TB external drive, it took about 4 minutes. Don't interrupt it — I've seen people yank the USB mid-convert and end up with a corrupted partition.
Step 3: Enable BitLocker
Once done, go back to File Explorer. Right-click the drive, select 'Turn on BitLocker.' It should start without the error.
Alternative Fixes
Reformatting (if you don't care about data)
If the drive is empty or backed up, format it to NTFS directly:
- Right-click drive in File Explorer > Format.
- For 'File system,' choose NTFS.
- Check 'Quick Format.'
- Start.
Use Diskpart (advanced)
If convert.exe fails, you can wipe and repartition:
diskpart
list disk
select disk X
clean
create partition primary
format fs=ntfs quick
assign letter=D
exit
Warning: this deletes everything. Only do this if you're sure.
Prevention Tip
Always format drives as NTFS if you plan to use BitLocker. Even for external drives used on Macs — Mac can read NTFS with third-party tools like Paragon. The inconvenience beats losing encryption entirely. If you need cross-platform sharing, get a dedicated exFAT drive for non-sensitive files and keep an NTFS one for encrypted data.
Had a client who kept a 2TB FAT32 drive for work files. BitLocker wouldn't touch it. Converted in 8 minutes, encrypted in 20. Still using it today.
Was this solution helpful?