BitLocker provides robust encryption for Windows users, safeguarding data by encrypting entire drives. This ensures that even if someone gains physical access to your device, they cannot access your files without proper authentication. Yet, if you misplace your BitLocker password or smart card, you'll require the BitLocker recovery key to unlock your drive.

The BitLocker recovery key is a unique 48-digit code generated when you enable BitLocker encryption. It's essential to have this key stored safely, as it is the last resort to access your encrypted data if standard authentication methods fail.

For guidance on how to enable or disable BitLocker and back up your recovery key on Windows 11, you can refer to our comprehensive BitLocker guide.

Where to Find Your BitLocker Recovery Key

Depending on how you set up BitLocker, there are several locations where your recovery key might be stored:

  • In your Microsoft account
  • On a saved file on your computer or a USB flash drive
  • In a printed document
  • In your Azure Active Directory account
  • In Active Directory (for domain-joined computers)
  • Using Command Prompt
  • Using PowerShell

The recovery key file usually has a name like:

BitLocker Recovery Key E41062B6-9330-459D-BCF0-16A975AE27E2.TXT

This name includes 'BitLocker Recovery Key' followed by a unique identifier.

How to Locate the Correct Recovery Key

If you have multiple recovery keys stored in various locations, identifying the right one can be challenging. Fortunately, Windows provides a Key ID to help you match the correct recovery key with your encrypted drive.

When prompted to enter the recovery key, you'll see a Key ID displayed in the dialog. You can use this Key ID to find the corresponding recovery key file.

For example, if you're trying to unlock a drive but have forgotten the password, you can click 'More options' and then select 'Enter recovery key'.

The BitLocker prompt will show a partial Key ID, which you can use to search for the matching recovery key.

Method 1: Retrieve Your Recovery Key from Your Microsoft Account

If you saved your recovery key to your Microsoft account during BitLocker setup, you can recover it online.

Step 1: Open a web browser and navigate to the Microsoft Devices page. Sign in with your Microsoft account credentials.

Step 2: On the 'Devices' page, locate your device and click on 'Info & support' under your device name.

Step 3: Under the BitLocker data protection section, click on 'Manage recovery keys'.

Step 4: You may be prompted to verify your identity. Select the verification method (e.g., 'Text' to your phone number) and follow the steps to receive a code.

Step 5: Enter the last four digits of your phone number, click 'Send code', then enter the received code to verify.

Step 6: After verification, you'll see a list of your recovery keys. Use the Key ID and device name to identify the correct recovery key.

Method 2: Find Your Recovery Key on a Saved File

If you chose to save your recovery key to a file during BitLocker setup, it might be stored as a text file (.txt) on your computer or a network drive.

Step 1: Open File Explorer and search for 'BitLocker Recovery Key' in the search bar.

Step 2: Look for files with names matching the Key ID displayed in the BitLocker prompt.

Step 3: Once you find the file, open it to view the recovery key.

Method 3: Locate Your Recovery Key on a USB Flash Drive

If you saved the recovery key to a USB flash drive, insert the drive into your computer.

Step 1: Open the USB flash drive in File Explorer.

Step 2: Look for a file named similar to 'BitLocker Recovery Key ... .TXT' and open it to retrieve your recovery key.

Method 4: Check Your Printed Documents for the Recovery Key

If you printed the recovery key, locate the physical document where you stored it.

Step 1: Find the printed paper containing the recovery key in your files or records.

If you opted to print it to a PDF instead, search your computer for PDF files that might contain the recovery key.

Method 5: Access Your Recovery Key in Azure Active Directory

If you used a work or school account associated with Azure Active Directory when setting up BitLocker, your recovery key might be stored there.

Step 1: Sign in to your Azure AD account or contact your organization's system administrator to retrieve the recovery key from your profile.

Method 6: Find Your Recovery Key in Active Directory

If your computer is part of a domain, the recovery key might be stored in Active Directory.

Step 1: On a domain-joined computer, open 'Active Directory Users and Computers'.

Step 2: Navigate to the 'Computers' container, right-click your computer object, and select 'Properties'.

Step 3: In the properties window, go to the 'BitLocker Recovery' tab to view your recovery keys.

Method 7: Use Command Prompt to Retrieve the Recovery Key

You can use Command Prompt to find the recovery key stored on your computer.

Step 1: Press Windows + X and select 'Command Prompt (Admin)' or 'Windows PowerShell (Admin)' from the menu.

Step 2: In the Command Prompt window, type the following command and press Enter:

manage-bde -protectors C: -get

Replace 'C:' with the drive letter of your encrypted drive.

Step 3: The command will display the recovery key under the 'Password' section. Note down the 48-digit recovery key.

Step 4: To save the recovery key to a text file on a specific drive, use the following command:

manage-bde -protectors C: -get >> D:\RecoveryKey.txt

Replace 'C:' with your drive letter and 'D:\RecoveryKey.txt' with your desired file path and name.

Method 8: Use PowerShell to Get Your Recovery Key

You can also use PowerShell to retrieve the recovery key.

Step 1: Right-click the Start button and select 'Windows PowerShell (Admin)'.

Step 2: To retrieve the recovery key for a specific drive, enter the following command:

(Get-BitLockerVolume -MountPoint C).KeyProtector

Replace 'C' with the letter of your encrypted drive.

Step 3: To save the recovery key to a text file, use the following command:

(Get-BitLockerVolume -MountPoint C).KeyProtector > D:\RecoveryKey.txt

Replace 'C' with your drive letter and 'D:\RecoveryKey.txt' with your desired file path.

Step 4: To retrieve recovery keys for all encrypted drives, run the following command:

Get-BitLockerVolume | Format-List -Property MountPoint,KeyProtector

If the above command doesn't display the recovery keys, try this script:

$BitLockerVolumes = Get-BitLockerVolume
foreach ($volume in $BitLockerVolumes) {
    if ($volume.KeyProtector.RecoveryPassword) {
        Write-Output "Recovery key for drive $($volume.MountPoint): $($volume.KeyProtector.RecoveryPassword)"
    }
}


By following these methods, you should be able to retrieve your BitLocker recovery key and regain access to your encrypted drive. Always ensure that you store your recovery key in a safe and accessible location to prevent data loss in the future.