Quick Answer
Boot into Windows using your recovery key, then run manage-bde -protectors -disable C: from an admin command prompt, or reset the TPM. That clears the PCR mismatch.
Why This Happens
BitLocker uses the TPM to lock your drive. The TPM checks certain system measurements, called PCRs, before releasing the key. PCRs include BIOS firmware, bootloader, and sometimes the MBR. When you update your BIOS, replace hardware, or even sometimes after a failed Windows update, those measurements change. The TPM sees a different value than what it stored, so it refuses to unlock the drive. The error 0XC0210018 shows up right after POST, before Windows even loads. You're stuck at a black screen with a tiny white message. It's frustrating because you didn't do anything wrong—the system just changed under you.
Before You Start
You need your BitLocker recovery key. Check your Microsoft account (account.microsoft.com/devices/recoverykey), or look for a printed copy, or a text file saved on a USB drive. Without it, you're locked out. If you don't have it, skip straight to step 5—but know that you'll lose your data unless you have a backup.
Fix Steps
- Boot into Windows using your recovery key. When you see the BitLocker recovery screen, press Enter to type the key. On the next screen, enter the 48-digit key. Watch for hyphens—they're automatic, so don't type them. After you press Enter, Windows should load normally. You'll see your desktop, but BitLocker is still in a 'recovery mode' state.
- Open an elevated command prompt. Click Start, type
cmd, right-click Command Prompt, and choose 'Run as administrator'. Accept the UAC prompt. You'll get a black window with a blinking cursor. - Disable BitLocker protection temporarily. Type this command and press Enter:
Replacemanage-bde -protectors -disable C:C:with your system drive letter if it's different. You should see a message saying 'BitLocker protection was successfully disabled.' This doesn't decrypt the drive—it just stops the TPM from checking PCRs for now. - Reboot and test. Restart your PC. If it boots straight to your login screen, the PCR mismatch is gone. But you've also disabled BitLocker, which leaves your data unprotected. You'll want to re-enable protection after you've confirmed everything works. Do that with:
If you get an error saying 'The term 'manage-bde' is not recognized', you're on a Home edition or the command isn't in your PATH. Try the full pathmanage-bde -protectors -enable C:%windir%\System32\manage-bde.exe. - If disabling protection doesn't work, reset the TPM. After you're in Windows, open the TPM Management console. Press Win+R, type
tpm.msc, and hit Enter. In the right pane, click 'Clear TPM...' and follow the prompts. Your system will reboot and re-initialize the TPM. Warning: This wipes all TPM keys, including any other data protected by the TPM (like Windows Hello or some SSO logins). Have your recovery key handy again because you'll be prompted for it on the next boot. - Still stuck? Try the recovery console. Boot from a Windows installation USB or a recovery drive. Choose 'Repair your computer' > 'Troubleshoot' > 'Advanced options' > 'Command Prompt'. Then run:
After that, you can disable the protectors as above, or runmanage-bde -unlock C: -RecoveryPassword your-48-digit-keymanage-bde -protectors -delete C:to remove the TPM protector entirely and use a password instead. I don't love that option, but it's better than losing your files.
If None of That Works
Sometimes the TPM chip itself is faulty. Check the event log (Event Viewer > Windows Logs > System) for TPM errors around the time of the issue. If you see Event ID 19 or 21, the TPM might be failing. On some laptops, you can change the TPM firmware version in BIOS—try switching from TPM 2.0 to 1.2 and back. That forces the TPM to reset all PCRs. Also, update your BIOS from the manufacturer's site, not Windows Update. A newer BIOS might fix a bug that caused the PCR to compute wrong.
Prevention Tips
- Before any BIOS update, disable BitLocker temporarily—or run
manage-bde -protectors -disable C:. After the update, re-enable it. This avoids the mismatch entirely. - Keep a copy of your recovery key in at least two places: one in your Microsoft account, one on paper in a safe spot.
- If you're a power user, consider using a password-only protector instead of TPM. It's less convenient but immune to PCR issues.
The real fix is understanding that PCRs change when hardware or firmware changes. You can't prevent every trigger, but you can prepare for it. And remember, that recovery key is your lifeline—don't skip that step.