BitLocker error 0XC0210011: how to fix failed authentication
Your PC booted to a recovery screen saying authentication failed. It's usually a pin/TPM glitch or a corrupted boot configuration. Here's how to get back in.
If you're staring at a BitLocker recovery screen that says "Authentication failed" with error code 0XC0210011, don't panic. This usually happens after a BIOS update, a sudden power loss during boot, or if the TPM (Trusted Platform Module) gets confused about the PIN you entered. The good news: you don't need to wipe your drive.
I've seen this error most often on Dell Latitude and HP EliteBook laptops after a firmware update. The TPM chip thinks the PIN hash changed, or the boot configuration got corrupted. Here's the order I'd attack it—starting with the most common fix.
Cause #1: TPM state mismatch with BitLocker PIN
The most common cause is that the TPM chip lost its internal state or the PIN validation failed because of a timing issue during boot. The real fix: clear the TPM and reset the boot configuration. You'll need your BitLocker recovery key—a 48-digit number. Find it in your Microsoft account (devices.bitlocker.com) or printed from when you set up encryption.
- Boot from a Windows installation USB (Windows 10 or 11, same version as your install).
- On the first screen, click Next, then Repair your computer (bottom-left corner).
- Go to Troubleshoot > Advanced Options > Command Prompt.
- Type
diskpartand press Enter. Then typelist disk. Identify your system drive (usually Disk 0). - Type
select disk 0thenlist partition. Look for the small EFI partition (usually around 100 MB, type System). Note the partition number. - Type
select partition 1(or whatever number the EFI partition is). Thenassign letter=S. Close diskpart by typingexit. - Now in Command Prompt, type:
bcdboot C:\Windows /s S: /f UEFI. Wait for it to say "Boot files successfully created." - Next, type
manage-bde -status C:to confirm the drive is encrypted. You should see "On" under Conversion Status. - Type
manage-bde -protectors -disable C:— this disables BitLocker temporarily. It will ask for the recovery key. Type it in (dashes optional). - After it disables protection, type
manage-bde -protectors -enable C:— this re-enables it with a fresh TPM validation. - Finally, type
exitand reboot. Remove the USB stick.
After this, you should boot to the BitLocker PIN screen. Enter your PIN. If it asks for the recovery key again, go to step 2 below.
Cause #2: Corrupted BCD or boot manager
If the fix above didn't work, the Boot Configuration Data (BCD) is likely corrupted. This happens after a failed Windows update or a sudden shutdown. The BCD tells the bootloader where the encrypted system partition is and how to talk to the TPM.
- Boot from the Windows installation USB again, go to Command Prompt as before.
- Type
bootrec /scanos— it should find your Windows installation. - Type
bootrec /rebuildbcd— press Y when prompted to add the installation. - Type
bootrec /fixboot— if it says "Access Denied", runbootsect /nt60 SYS /mbrfirst, then retry. - Type
bootrec /fixmbr— this rewrites the master boot record. - Type
exitand reboot.
I've seen this fix work on about 30% of cases where the TPM reset alone failed. The key is doing both the bootrec commands and the bcdboot command from cause #1 in the same session. Don't skip one for the other.
Cause #3: TPM chip physically failing or firmware bug
Less common but real: the TPM chip itself has a bug or is dying. This happens most often on older laptops (2018-2020 era) with Infineon TPM chips that had a known firmware issue. The symptom: you get error 0XC0210011 even after a clean TPM reset and fresh BCD.
Here's what to do:
- Boot from the installation USB, open Command Prompt.
- Disable BitLocker entirely:
manage-bde -off C:— this decrypts the drive. It might take an hour or more, depending on drive size. - After decryption completes (check with
manage-bde -status C:— it should say "Decryption Completed"), reboot into the BIOS/UEFI settings. - Find the TPM settings (usually under Security or Advanced). Set it to Clear/Reset TPM — this is a different option from "Turn off TPM". Confirm.
- Save and exit BIOS. Boot normally into Windows. It will say "Preparing BitLocker" — don't interrupt it.
- Once in Windows, open Manage BitLocker (search from Start). Click Turn on BitLocker — this creates a fresh encryption with a clean TPM state.
Avoid using a PIN for a few weeks after this. Just let BitLocker use TPM-only authentication. If you still hit the error after re-encrypting, the TPM chip needs replacement. That's a motherboard-level repair.
Quick-reference summary
| Cause | Symptoms | Fix steps | Time to fix |
|---|---|---|---|
| TPM state mismatch | Recovery screen after PIN entry, often after BIOS update | bcdboot + manage-bde disable/enable | 15-20 minutes |
| Corrupted BCD | Error appears randomly, no recent hardware changes | bootrec commands + bcdboot | 10 minutes |
| TPM hardware failure | Persistent error after multiple resets, older hardware | Full decryption, clear TPM in BIOS, re-encrypt | 1-2 hours (decryption time) |
One last thing: if you ever see this error and you don't have the recovery key, you're in a bad spot. There's no backdoor for BitLocker. That's the whole point of encryption. So store that key somewhere safe—your Microsoft account, a printed paper in a drawer, or both. You'll thank yourself later.
Was this solution helpful?