TPM_E_OWNER_SET (0X80280014) – Quick Fix Guide
You can't set a TPM owner because one already exists. Clear it via Windows Security or tpm.msc, or use a PowerShell command. Takes two minutes.
You're Getting This Error Because an Owner Already Exists
This happens when you try to initialize the TPM but Windows already has an owner — maybe from a previous setup, a motherboard swap, or a BIOS reset that didn't clear the TPM. The culprit here is almost always a leftover owner credential that needs to be removed before you can provision it fresh.
The Fix: Clear the TPM Owner
You've got two ways to do this. Both work. Pick the one that matches your comfort level.
Method 1: Windows Security (Recommended for Most Users)
- Open Windows Security (search for it in the Start menu).
- Click Device security.
- Under Security processor, click Security processor details.
- Click Security processor troubleshooting.
- Click Clear TPM. Windows will warn you this erases all keys — BitLocker, Windows Hello, etc. If you're using BitLocker, suspend it first or have your recovery key ready.
- Restart the PC when prompted.
Method 2: tpm.msc (The Classic Tool)
- Press
Win + R, typetpm.msc, hit Enter. - In the right pane, click Clear TPM.
- Restart and follow the BIOS prompt (usually press F12) to confirm the physical presence of the user.
Method 3: PowerShell (When You Want Control)
Open PowerShell as Administrator and run:
Clear-Tpm
If it succeeds, reboot. If it fails, you might need to clear via BIOS first — see the next section.
Why Clearing Works
The TPM stores a unique owner authorization value when initialized. The 0x80280014 error fires when that value already exists and Windows can't overwrite it without explicit clearance. Clearing the TPM resets the entire security processor to its factory state — no owner, no keys, no data. Windows can then provision it fresh on the next boot.
Don't bother with driver updates or BIOS changes here. The error is about state, not configuration. Only clearing the TPM fixes it.
Less Common Variations
Sometimes the standard clear fails. Here's what you're up against:
Variation 1: BIOS/UEFI Locked TPM
Some OEMs (Dell, Lenovo, HP) require a BIOS password before you can clear the TPM. Boot into BIOS (usually F2/Del), find the TPM submenu, and look for an option like Clear TPM or Reset TPM. You'll need to confirm physical presence — might involve typing "YES" or pressing F12. After clearing, reboot to Windows and run Initialize-Tpm in PowerShell to set up a new owner.
Variation 2: Group Policy Blocking Clear
Domain-joined machines sometimes block the clear operation via Group Policy. Check Computer Configuration > Administrative Templates > System > Trusted Platform Module Services — if Turn on TPM backup to Active Directory Domain Services is enabled, that can interfere. You'll need domain admin rights to temporarily disable it, clear the TPM, then re-enable.
Variation 3: TPM in a Lockdown State After Failed Attempts
If you've tried clearing multiple times and it still fails, the TPM may be in a temporary lockout. This usually lasts a few hours. Let the PC sit powered on (not sleep) for 4-6 hours, then try again. No magic — the TPM's anti-hammering mechanism kicks in to prevent brute-force attacks.
How to Prevent This From Happening Again
- Always clear the TPM before a motherboard swap or BIOS update. Those operations can orphan the owner credential, leaving you with a bricked TPM until you clear it.
- Back up BitLocker recovery keys before any TPM operation. Store them in Active Directory or your Microsoft account.
- Avoid manually setting a TPM owner via scripts unless you know what you're doing. Windows handles it automatically — let it.
- If you use Windows Hello, know that clearing the TPM will wipe all biometric data. Re-setup your PIN and face unlock after.
That's it. Clear the TPM, reboot, and move on. You won't see 0x80280014 again unless you go poking around the TPM owner settings — so don't.
Was this solution helpful?