0X80290212

TBSIMP_E_UNKNOWN_ORDINAL (0x80290212) fix

Windows Errors Intermediate 👁 0 views 📅 May 27, 2026

This error pops up when the TPM Base Services can't find a function it needs. Usually happens after a bad driver update or Windows corruption.

You're running Windows 11 or 10, maybe trying to launch BitLocker or a security app, and boom — you get TBSIMP_E_UNKNOWN_ORDINAL (0x80290212). The exact trigger is usually a Windows Update that messed with your TPM driver, or a third-party tool that tried to call a TBS function that doesn't exist in the current version. I've seen it happen after a feature update (like 22H2) or after installing some motherboard driver packs that overwrote the TBS driver with the wrong one.

What's causing this?

The TPM Base Services (TBS) is a core Windows service that handles communication with your TPM chip. The error TBSIMP_E_UNKNOWN_ORDINAL means the TBS implementation (the file tbs.dll) doesn't contain the specific function ordinal your software is asking for. In plain English: your app is calling a function that doesn't exist in the TBS library on your system. This is usually because the tbs.dll file is either corrupted, from a different Windows version, or replaced by a bad driver update.

Step-by-step fix

Step 1: Run System File Checker (SFC) and DISM

Corrupted system files are the most common cause. Run these commands to restore the original tbs.dll.

  1. Press the Windows key, type cmd, right-click Command Prompt, and select Run as administrator.
  2. Type this and press Enter:
    sfc /scannow
  3. Let it finish — this takes 10-15 minutes. After it completes, you should see a message like "Windows Resource Protection found corrupt files and successfully repaired them." If it says it couldn't fix something, don't worry, that's what DISM is for.
  4. Now run DISM to fix the system image:
    DISM /Online /Cleanup-Image /RestoreHealth
  5. This takes 15-30 minutes. When it finishes, you'll see "The operation completed successfully."
  6. Restart your computer. After restarting, test if the error is gone.

Step 2: Re-register tbs.dll

If SFC and DISM didn't help, the file might be registered wrong. Re-register it manually.

  1. Open an elevated Command Prompt again (same as above).
  2. Type the following and press Enter after each line:
    regsvr32 /u tbs.dll
    regsvr32 tbs.dll
  3. You should see a popup saying "DllRegisterServer in tbs.dll succeeded." If you get an error, the file is probably missing or deeply corrupted — skip to Step 3.
  4. Restart your PC.

Step 3: Replace tbs.dll from a clean copy

The real fix is to pull a clean tbs.dll from a working Windows installation. This is the step that's saved my bacon more than once.

  1. You need access to another computer running the exact same Windows version (same build number). On that working PC, go to C:\Windows\System32\ and copy the file tbs.dll to a USB drive.
  2. Back on your broken PC, take ownership of the file first, because Windows protects it. Open an elevated Command Prompt and run:
    takeown /f C:\Windows\System32\tbs.dll
    icacls C:\Windows\System32\tbs.dll /grant Administrators:F
  3. Now rename the old file just in case:
    ren C:\Windows\System32\tbs.dll tbs.old
  4. Copy the clean tbs.dll from your USB drive to C:\Windows\System32\. Use File Explorer or this command:
    copy D:\tbs.dll C:\Windows\System32\
    (Replace D: with your USB drive letter.)
  5. Run the regsvr32 command from Step 2 again to register the new file.
  6. Restart your PC.

Step 4: Check for Windows Update rollback

If the error started after a specific update, uninstall that update.

  1. Go to Settings > Windows Update > Update history > Uninstall updates.
  2. Find the most recent update (usually a "Security Update" or "Feature Update") that was installed just before the error appeared. Select it and click Uninstall.
  3. Restart your PC. If the error is gone, you found the culprit. Pause updates for a few weeks and check if Microsoft releases a fix.

What to check if it's still failing

If none of that worked, here's what I'd check next:

  • Is your TPM chip enabled in BIOS? Some motherboards disable TPM by default. Restart, press F2/Del to enter BIOS, look for "TPM" or "Intel PTT" or "AMD fTPM", and make sure it's enabled.
  • Did a third-party security tool break things? Apps like VPNs, antivirus suites, or encryption software sometimes replace tbs.dll. Uninstall any recently installed security software and re-run SFC.
  • Is your Windows build too old? If you're running a really old build (like 20H2), some apps expect newer TBS functions. Consider updating to the latest Windows 11 23H2 or Windows 10 22H2.
  • Do a repair install. As a last resort, run the Windows 11/10 installer from within Windows and choose "Keep personal files and apps". This replaces all system files without nuking your data. It's a pain, but it works every time.

Was this solution helpful?