Skip to content

How to Find Your BitLocker Recovery Key

Locked out by BitLocker? Find your recovery key from a Microsoft account, Entra ID, Active Directory, or a printout — and learn why it's asked for after BIOS changes.

MGMCSA Guru Team June 12, 2026 8 min read
A locked laptop showing the BitLocker recovery screen with a 48-digit key ID, next to icons for a Microsoft account, cloud, and printout

You restart a perfectly healthy PC and instead of the login screen you get a blue page demanding a 48-digit BitLocker recovery key. Nothing is broken — BitLocker has decided the boot environment changed and won’t release the drive until you prove you’re allowed to. The whole job now is finding that key.

The key isn’t lost; it’s stored somewhere. Which “somewhere” depends entirely on how the drive was encrypted and who set it up. A home laptop almost always backed the key up to a Microsoft account. A work laptop put it in the company’s directory. This guide walks through every place the key lives, in the order you should check them, plus why the prompt appears and how to stop it from catching you out next time.

Where the key could be

Before hunting, work out which category your PC falls into. It narrows the search immediately.

Most likely location by PC type

Personal PC, signed in with a Microsoft account Microsoft account online
Work/school PC, modern cloud-managed Entra ID (Azure AD)
Work PC on a traditional domain On-premises Active Directory
Set up by you manually Printout, saved .txt file, or USB stick

Method 1: Your Microsoft account (most home PCs)

If this is a personal machine and you signed into Windows with a Microsoft account, this is almost certainly where the key is. Windows backs it up here automatically when BitLocker (or Device Encryption) is turned on.

From any phone or working computer:

  1. Go to account.microsoft.com/devices/recoverykey.
  2. Sign in with the same Microsoft account that was used on the locked PC.
  3. You’ll see a list of recovery keys grouped by device and Key ID.
  4. Match the Key ID from the BitLocker screen to the entry, then read off the recovery key.
https://account.microsoft.com/devices/recoverykey

Method 2: Entra ID / Azure AD (work or school PC)

If a workplace handed you the laptop and it’s cloud-managed, the key is stored against the device in Entra ID (formerly Azure AD). You’ll either need admin access or a quick word with your IT team.

As an administrator:

  1. Open the Microsoft Entra admin center (or Azure AD in the Azure portal).
  2. Go to Devices → All devices and find the machine.
  3. Open the device and look for BitLocker keys / Show recovery key.
  4. Match the Key ID and read the recovery key.

As an end user, you can often self-serve at your organization’s My Account / myaccount.microsoft.com device page if IT has enabled it. If not, the help desk can retrieve it in under a minute — give them the device name and the Key ID.

Method 3: On-premises Active Directory (domain PC)

On a traditional Windows domain, BitLocker keys are commonly escrowed into AD, stored on the computer object as msFVE-RecoveryInformation. Retrieving them takes a domain admin or delegated rights.

The friendly way is the Active Directory Users and Computers console: enable the BitLocker Recovery feature, find the computer object, and open its BitLocker Recovery tab. Each key is listed with its date and Key ID.

If you’d rather use PowerShell on a domain controller or a machine with RSAT:

# Find the recovery info objects under a computer account
Get-ADObject -Filter 'objectClass -eq "msFVE-RecoveryInformation"' `
  -SearchBase (Get-ADComputer "PC-NAME").DistinguishedName `
  -Properties msFVE-RecoveryPassword |
  Select-Object Name, msFVE-RecoveryPassword

The Name of each object starts with the date and the Key ID, so you can pick the entry that matches the screen, and msFVE-RecoveryPassword is the 48-digit key.

Method 4: Printout, file, or USB

When BitLocker is turned on manually, Windows offers to save the key as a printout, a text file, or to a USB drive. If you set this PC up yourself, the key may be sitting in one of those places.

Places a manual backup tends to hide

  • A printed sheet labelled 'BitLocker Recovery Key' filed with PC paperwork
  • A .txt file named with a long GUID, on another drive or in cloud storage like OneDrive
  • A USB stick kept with the laptop — the key is a plain text file in its root
  • Saved into a password manager when you enabled encryption

The saved file is plain text and looks roughly like this, so it’s easy to recognise once you find it:

BitLocker Drive Encryption recovery key

Recovery Key ID:    A1B2C3D4-...
Recovery Key:       123456-123456-123456-123456-123456-123456-123456-123456

Why BitLocker asks for the key after BIOS changes

This part trips up a lot of people, so it’s worth understanding. BitLocker (with a TPM) ties the encryption to a set of measurements about how the PC boots — firmware version, Secure Boot state, boot files. If any of those change in a way the TPM can’t vouch for, BitLocker assumes the drive might have been moved or tampered with, and it falls back to asking for the recovery key.

Common triggers:

  • A firmware/BIOS update
  • Enabling or disabling Secure Boot, or changing TPM settings
  • Hardware changes like swapping the motherboard
  • Moving the encrypted drive to a different PC
  • Sometimes a docking change or a stuck firmware setting

None of these mean BitLocker has failed. It’s doing exactly what it’s meant to. The fix is to enter the key once; after a normal boot it reseals to the new measurements and stops asking.

How to avoid the prompt: suspend before firmware work

If you know you’re about to update firmware or change Secure Boot/TPM settings, suspend BitLocker first. Suspending keeps the drive encrypted but parks the protectors so the PC can boot once without the key — which means the changed boot measurements don’t trip recovery.

# Suspend until the next restart (count = 1)
Suspend-BitLocker -MountPoint "C:" -RebootCount 1

# Or the classic command-line tool
manage-bde -protectors -disable C:

# Resume protection afterwards
Resume-BitLocker -MountPoint "C:"

Using -RebootCount 1 is the tidy approach for a single firmware update: BitLocker re-enables itself automatically after one restart, so you can’t forget to turn it back on. For a multi-restart firmware flash, suspend without a reboot count and resume manually when you’re done.

If you truly can’t find it

Be straight with yourself here: BitLocker has no back door. If the key isn’t in any Microsoft account you own, your organization’s directory, a printout, a file, or a USB stick, the encrypted data cannot be recovered. That’s the entire point of the feature.

Before giving up, run the list one more time — wrong Microsoft account and an overlooked OneDrive text file account for most “lost” keys. If it’s a work device, the help desk is your best shot; the key is very likely sitting in Entra ID or AD whether or not you can see it yourself.

Wrapping up

Finding a BitLocker recovery key is mostly about knowing where to look, and that comes down to how the PC was set up. Personal machine: check your Microsoft account online. Work machine: it’s in Entra ID or Active Directory, and IT can pull it fast. Self-managed: dig out the printout, file, or USB you saved at the time.

And once you’re back in, save yourself the repeat scare — note where your key lives, and suspend BitLocker before any firmware update or Secure Boot change so a planned boot change doesn’t lock you out.

Frequently asked questions

Where is my BitLocker recovery key stored?

It depends on how the drive was encrypted. For personal PCs it's usually saved to the Microsoft account you signed in with. Work or school PCs store it in Entra ID (Azure AD) or on-premises Active Directory. It can also be printed, saved to a file, or held on a USB stick.

How do I find my BitLocker key with my Microsoft account?

Go to account.microsoft.com/devices/recoverykey and sign in with the same Microsoft account that was on the PC. Any keys tied to that account are listed by device and key ID. Match the key ID shown on the BitLocker screen to the right entry.

Why is BitLocker suddenly asking for a recovery key?

BitLocker enters recovery mode when the boot environment changes in a way it can't verify — a firmware/BIOS update, enabling or disabling Secure Boot or TPM, hardware changes, or moving the drive to another PC. It's the encryption working as designed, not a fault.

Can I bypass the BitLocker recovery key?

No. The recovery key exists precisely so the drive can't be unlocked without it. If you genuinely have no copy of the key anywhere — Microsoft account, work directory, printout, or USB — the encrypted data is not recoverable. There's no back door.

What's the difference between the recovery key and the key ID?

The key ID is a short identifier shown on the recovery screen so you can find the matching key among several. The recovery key is the full 48-digit number you actually type in to unlock the drive. You use the key ID to locate the correct recovery key.

How do I avoid the recovery prompt before a BIOS update?

Suspend BitLocker before updating firmware or changing Secure Boot/TPM settings, then resume it afterward. Suspending leaves the drive encrypted but lets the PC boot once without the key, so the changed boot measurements don't trigger recovery.

Sources & further reading

Official vendor documentation referenced while writing this guide.

MG

MCSA Guru Team

IT & Systems Administration

We are working IT pros and system administrators who spend our days in Windows Server, Microsoft 365, and the wider Microsoft stack. MCSA Guru is where we write down the fixes and walkthroughs we wish we had found the first time.

MCSA Guru provides independent, educational IT guidance. Microsoft, Windows, Windows Server, Microsoft 365, Exchange, and Microsoft Teams are trademarks of Microsoft Corporation; Docker is a trademark of Docker, Inc. MCSA Guru is not affiliated with or endorsed by Microsoft or Docker. Always test changes in a safe environment before applying them in production.

Related guides

Fixing something right now?

Jump straight into the guide library or search for the exact error or task you are dealing with.