PowerShell to display your Bitlocker Recovery Key

Here’s a quick one-line PowerShell Script to find out your recovery Bitlocker Recovery password

Get-BitLockerVolume | ? {$_.KeyProtector.KeyProtectorType -eq “RecoveryPassword”} | Select-Object MountPoint,@{Label=’Key’;Expression={“$($_.KeyProtector.RecoveryPassword)”}}

Please note you have to be a local admin to run the above.

 

About the author