Get Bitlocker Recovery Key From Active Directory ((install)) -
Run the following command, replacing ComputerName with the actual name of the machine: powershell
Get-ADObject -Filter "Name -like '*RecoveryID*'" -Properties msFVE-RecoveryPassword Use code with caution. Method 4: Self-Service via BitLocker Portal (MBAM) get bitlocker recovery key from active directory
Method 2: Using Active Directory Administrative Center (ADAC) Run the following command, replacing ComputerName with the
: You must have Domain Admin rights or delegated permissions to view sensitive attributes. Run the following command
: If you don’t see the BitLocker tab in ADUC, ensure the "BitLocker Recovery Password Viewer" feature is enabled in Windows Features.
$Computer = Get-ADComputer -Identity "ComputerName" Get-ADObject -Filter "objectClass -eq 'msFVE-RecoveryInformation'" -SearchBase $Computer.DistinguishedName -Properties msFVE-RecoveryPassword | Select-Object msFVE-RecoveryPassword Use code with caution.