0XC0210028

Fix BitLocker Error 0XC0210028: Recovery Failed

BitLocker throws this when a drive conversion is interrupted and can't roll back. Here's how to get your drive working again, from simplest to most involved.

If you're staring at STATUS_FVE_CONV_RECOVERY_FAILED (0XC0210028), I know the feeling. Your system just went through a blue screen or a forced shutdown mid-encryption, and now BitLocker is stuck in limbo. The drive isn't encrypted, but it can't go back to how it was either. The error message is about as helpful as a flat tire on a rainy day.

Here's the good news: I've fixed this on more machines than I care to count, and you can too. Below are the three most common causes and the fixes that actually work. I've ordered them by how often I see them, so start at the top.

Cause 1: The Encryption Process Was Interrupted by a Power Loss or Hard Reboot

This is the big one. BitLocker's conversion is a low-level operation that can't just pause and resume like a Netflix stream. If the system loses power mid-conversion, the volume can be left in a state where the encryption keys are partially written. Windows tries to roll back on the next boot, but sometimes that rollback fails, and you get 0XC0210028.

The fix here is to tell BitLocker to resume the conversion, not fight it. Open an elevated Command Prompt (right-click Start, choose Command Prompt (Admin) or Terminal (Admin)) and run:

manage-bde -resume C:

Replace C: with your actual drive letter. If this works, you'll see a message saying conversion is resuming. Let it run—it might take a while, especially on a large drive. After it finishes, reboot and see if the error clears.

If manage-bde throws an error saying it can't find the volume or that encryption is already complete, move to the next cause.

Cause 2: The BitLocker Recovery Key Isn't Available or Has Changed

Sometimes the rollback failure isn't about the interruption itself—it's about the key. If BitLocker can't validate the recovery key it needs to undo the conversion, it gives up and throws 0XC0210028. This often happens after a BIOS update or a hardware change, which invalidates the existing key.

Your recovery key is stored in your Microsoft account (if you used one) or in the AD if you're on a domain. Go to aka.ms/myrecoverykey and sign in. Look for the key associated with the drive that's failing. It looks like a long string of digits, typically 48 characters.

Once you have it, you can use it to unlock the drive. In the same elevated Command Prompt, run:

manage-bde -unlock C: -RecoveryPassword [your-recovery-key]

If the key is accepted, the drive unlocks, and then you can resume or decrypt. If it's rejected, you've got a different problem—see cause 3.

Cause 3: Corrupted File System or Bad Sectors on the Drive

This one's the sneaky one. The conversion failure might have been a symptom, not the cause. If your drive has bad sectors or the file system is already corrupt, BitLocker can't complete the rollback because it can't read the data it needs. This is especially common on older mechanical drives or after a sudden drop.

Don't panic. First, run a check disk to find and fix file system errors. In the same Command Prompt:

chkdsk C: /f /r

You'll be asked to schedule it for the next reboot if the drive is in use. Do that, reboot, and let it run. It can take hours on a large drive, so grab a coffee.

If chkdsk finds and fixes errors, try the resume command again:

manage-bde -resume C:

If it still fails, you might need to decrypt the drive completely and start fresh. This is drastic, but it's the nuclear option that works when nothing else does. To decrypt:

manage-bde -off C:

This will decrypt the drive, which takes a while. After it's done, you can re-enable BitLocker from scratch. Yes, it's annoying, but it beats having an unusable drive.

A quick note: If you're in a corporate environment, check if BitLocker is managed by Group Policy. Sometimes the policy forces a specific recovery mode, and these commands will get overridden. In that case, contact your IT admin before running anything drastic.

Quick Reference Table

Likely CauseDiagnosticFix
Interrupted conversion (power loss, forced reboot)Error appears after an unexpected shutdown mid-encryptionmanage-bde -resume C:
Recovery key missing or invalidError appears after BIOS update or hardware changeGet recovery key from Microsoft account, then manage-bde -unlock C: -RecoveryPassword [key]
File system corruption or bad sectorsError persists after resume; drive makes odd noises or shows SMART warningschkdsk C: /f /r, then resume; if fails, manage-bde -off C: and re-encrypt

That's the whole toolkit. I've seen this error pop up after a Windows feature update that got yanked mid-install, or after someone yanked the power cord during a laptop sleep cycle. It's nasty, but it's rarely permanent. If none of these steps fix it, you might be looking at a failing drive, and I'd back up everything you can before it gets worse.

Related Errors in Cybersecurity & Malware
Threat Intelligence Feed Sync Failure Fix .lockbit Remove LockBit ransomware and decrypt .lockbit files 0X80092001 Fix CRYPT_E_BAD_LEN (0x80092001) in 3 Steps 0XC00002FD Fix STATUS_KDC_UNKNOWN_ETYPE 0xC00002FD encryption type error

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.