# Find Recovery key using hostname
Get-ADObject -Filter 'objectClass -eq "msFVE-RecoveryInformation"' -SearchBase (Get-ADComputer MAOL2212001).DistinguishedName -Properties whenCreated, msFVE-RecoveryPassword | `
Sort whenCreated -Descending | Select whenCreated, msFVE-RecoveryPassword
# Find computers with Bitlocker
Get-ADObject -Filter 'objectClass -eq "msFVE-RecoveryInformation"'