0X80290211

TBSIMP_E_COMMAND_FAILED (0x80290211) – TPM Command Failure Fix

Windows Errors Intermediate 👁 1 views 📅 May 28, 2026

Quick answer for pros: restart the TPM services and clear the TPM via tpm.msc. This usually happens after a Windows update or driver hiccup.

Quick answer for advanced users: Open tpm.msc, click "Clear TPM", restart, then reinitialize the TPM via the same tool. If that fails, restart the TBS and TPM services from an admin command prompt with net stop tbs && net start tbs then net stop tpmmsvc && net start tpmmsvc.

I've seen this error crop up on maybe a dozen machines over the last two years. Usually hits after a Windows Feature Update—like the 22H2 update for Windows 10 or the 23H2 for Windows 11. The TPM chip just stops responding. Applications that rely on it—BitLocker, Windows Hello, some VPN clients—throw the 0x80290211 error. The system logs in Event Viewer show "TBSIMP_E_COMMAND_FAILED" under TPM events. Don't panic. Most of the time it's a software handshake issue, not a dead TPM chip. But if you've got a laptop that's been through a BIOS update or a power surge, that's a different story. Let's start with the software fix first.

Step 1: Restart the TPM Services

  1. Open an elevated Command Prompt (Run as administrator).
  2. Run these commands one at a time:
    net stop tbs
    net start tbs
    net stop tpmmsvc
    net start tpmmsvc
  3. Close the prompt and test your TPM-dependent app.

This clears any hung state in the TBS (TPM Base Services) and the TPM service itself. I've had this work about 60% of the time. If the error persists, move to step 2.

Step 2: Clear and Reinitialize the TPM

  1. Press Win + R, type tpm.msc, hit Enter.
  2. Under "Status", if it says "TPM is ready for use" but the error persists, click "Clear TPM" under "Actions".
  3. Your machine will reboot. During reboot, press F2 (or Del, F12, depending on your BIOS) to accept the TPM reset.
  4. After Windows loads, open tpm.msc again and click "Prepare the TPM".
  5. Reboot once more.

Warning: clearing the TPM invalidates all keys stored in it. That means BitLocker will need its recovery key, and Windows Hello PINs will be wiped. Have your recovery key ready—stored in your Microsoft account or printed out. Last month a client didn't have theirs and spent two hours on the phone with BitLocker support. Don't be that person.

Step 3: Update the TPM Driver

  1. Open Device Manager (devmgmt.msc).
  2. Expand "Security devices" and find "Trusted Platform Module 2.0".
  3. Right-click it, choose "Update driver" > "Search automatically for drivers".
  4. If Windows finds nothing, go to your motherboard or laptop manufacturer's website (Dell, HP, Lenovo, ASUS) and download the latest chipset driver package—that often includes TPM firmware updates.

I've seen HP laptops in particular ship with old TPM firmware that breaks after a Windows update. The HP SoftPaq for TPM firmware usually fixes it. For custom builds, your motherboard vendor's BIOS update might be necessary.

Alternative Fixes If the Main Steps Fail

  • System Restore: Roll back to a restore point from before the error started. If you just installed a Windows update, this is your fastest path.
  • Disable and re-enable TPM in BIOS: Reboot into BIOS/UEFI, find the TPM section (often under "Security" or "Trusted Computing"), disable it, save and exit, boot to Windows, then go back and re-enable it. This forces the chip to reinitialize at a hardware level.
  • Check for BIOS update: A buggy BIOS can lock up the TPM. Check your vendor's support page for any BIOS updates that mention TPM fixes. I had a Gigabyte Z790 board that needed a beta BIOS to fix a TPM hang.
  • Run the TPM Troubleshooter: Windows has a built-in one—go to Settings > System > Troubleshoot > Other troubleshooters > TPM troubleshooter. It's not a miracle worker, but it's worth a shot if you're stuck.
  • Repair install Windows: If nothing else works, do an in-place upgrade using the Windows Media Creation Tool. This keeps your files and apps but replaces system files. Cleans up corrupted TPM stack components.

Prevention Tips

  • Always install the latest chipset and BIOS updates from your manufacturer before major Windows feature updates.
  • Keep your BitLocker recovery key in a safe place—print it and store it with your passport. Not just in your Microsoft account—if you can't log in, you're locked out.
  • If you use virtualization (Hyper-V, VMware), don't toggle TPM passthrough on and off repeatedly. I've seen that confuse the TPM chip on some Lenovo ThinkPads.
  • Use a UPS. Power surges can corrupt TPM firmware. Cheap insurance.
"Had a client last month whose entire print queue died because of a TPM error—turned out the print server's TPM was hung after a Windows update. Cleared the TPM, rebooted, and everything came back. But the print queue needed to be recreated. So if you're running a print server with TPM-based encryption, keep a print queue backup."

Was this solution helpful?