Get Bitlocker Recovery Key From Active Directory =link= | 2K 2024 |
How to Retrieve BitLocker Recovery Keys from Active Directory
Losing a BitLocker recovery key can be a nerve-wracking experience, especially when a user is locked out of their device. If your organization utilizes Active Directory (AD) to back up recovery information, the key is safely stored and ready for retrieval by IT administrators.
This guide outlines the steps to locate and export BitLocker recovery keys using the Active Directory Users and Computers (ADUC) console and PowerShell. get bitlocker recovery key from active directory
Troubleshooting
- No recovery object found: ensure the machine is domain-joined, BitLocker policy is configured to back up keys to AD, the machine has had network connectivity when enabling BitLocker, and the AD schema supports BitLocker (ms- FVE attributes).
- Schema issues: Recovery attributes require the AD schema extensions provided by BitLocker (Windows Server 2008 / later). Verify schema and replication status.
- Replication delays: Recovery objects may take time to replicate across domain controllers.
Best Practices for BitLocker Recovery Key Management
- Always back up to AD before deployment – Do not hand out a laptop until the key exists in AD.
- Rotate keys after hardware changes – A TPM reset or motherboard replacement requires a new recovery key backup.
- Audit recovery key access – Enable auditing on the
msFVE-RecoveryInformationobjects to track who retrieves keys. - Have a secondary location – Consider printing keys to a secure offline location for disaster recovery.
The "BitLocker Recovery" Tab is Missing
If you do not see the BitLocker Recovery tab on the computer object properties: How to Retrieve BitLocker Recovery Keys from Active
- Ensure Advanced Features are enabled in the View menu.
- Verify that the computer has successfully backed up the key to AD. You can force a backup on the client machine using PowerShell (run as Admin):
manage-bde -protectors -adbackup C:
Quick checks (one-off)
- Confirm the computer object exists in AD: open Active Directory Users and Computers (ADUC) and enable Advanced Features (View → Advanced Features).
- Under the computer object, look for a container named "BitLocker Recovery" (msFVE-RecoveryInformation). Each entry shows a recovery password.
Get the recovery password
Get-ADObject -Filter objectClass -eq 'msFVE-RecoveryInformation' -SearchBase (Get-ADComputer $ComputerName).DistinguishedName | Select-Object Name, msFVE-RecoveryPassword No recovery object found: ensure the machine is
Output:
Name msFVE-RecoveryPassword
---- ----------------------
238947-123456-... 238947-123456-789012-345678-901234-567890-123456-789012
To get the specific Key ID shown on the lock screen:
Get-ADObject -Filter objectClass -eq 'msFVE-RecoveryInformation' -Properties msFVE-RecoveryPassword, msFVE-KeyPackage -SearchBase (Get-ADComputer $ComputerName).DistinguishedName