0X80310013

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.

  1. Press Windows key + X and select 'Command Prompt (Admin)' or 'Windows Terminal (Admin)'.
  2. Type convert D: /fs:ntfs (replace D with your drive letter).
  3. 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:

  1. Right-click drive in File Explorer > Format.
  2. For 'File system,' choose NTFS.
  3. Check 'Quick Format.'
  4. 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.
Related Errors in Cybersecurity & Malware
0X80310012 Fix FVE_E_SYSTEM_VOLUME 0x80310012 BitLocker Error Error code: 0x80070422 or Service not found Windows Security Center Service Not Running – Fix It Fast 0X800F0238 SPAPI_E_SCE_DISABLED 0X800F0238 Fix on Embedded Windows CERT_E_REVOCATION_FAILURE Certificate Revocation Failure: Fix It in 2 Minutes

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.