Backing up Bitlocker key to Azure AD

Irish84 1 Reputation point
2021-11-29T11:06:12.743+00:00

Hi,

I have project to join PC's to Intune and enable Bitlocker. The PC's are already joined to active directory we will be joining them to Intune by adding the account via Access work or school account. I have the policy created and working to enable Bitlocker on the PC's that are not encrypted and the keys are backing up to Azure AD but some of the PC's are already encrypted with Bitlocker how do i backup those keys to Azure AD?

Windows 10 Security
Windows 10 Security
Windows 10: A Microsoft operating system that runs on personal computers and tablets.Security: The precautions taken to guard against crime, attack, sabotage, espionage, or another threat.
2,812 questions
Microsoft Intune
Microsoft Intune
A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.
4,639 questions
0 comments No comments
{count} votes

4 answers

Sort by: Most helpful
  1. Eswar Koneti 2,201 Reputation points
    2021-11-29T12:55:51.153+00:00

    you can use the following powershell script (create using intune) to escrow the bitlocker keys to azure ad.

    BackupToAAD-BitLockerKeyProtector -MountPoint $env:SystemDrive -KeyProtectorId ((Get-BitLockerVolume -MountPoint $env:SystemDrive ).KeyProtector | where {$_.KeyProtectorType -eq "RecoveryPassword" }).KeyProtectorId

    Thanks,
    Eswar
    www.eskonr.com

    2 people found this answer helpful.

  2. Rahul Jindal [MVP] 9,551 Reputation points MVP
    2021-11-29T23:01:20.523+00:00
    1 person found this answer helpful.

  3. Limitless Technology 39,486 Reputation points
    2021-12-01T09:38:34.493+00:00

    Hi there,

    You can manually back up the BitLocker recovery key to AD if it is encrypted before joining the computer to the domain.

    -Get the ID for the numerical password protector of the volume. Run the command from an elevated command prompt.
    manage-bde -protectors -get c:

    Use the numerical password protector’s ID from STEP 1 to backup recovery information to AD

    If it is not getting uploaded after this try checking this article for more steps.

    Bitlocker Keys not populating to AAD
    https://learn.microsoft.com/en-us/answers/questions/35181/bitlocker-keys-not-populating-to-aad.html

    -----------------------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept it as an answer--

    1 person found this answer helpful.

  4. Ethan Wilson 0 Reputation points
    2024-01-03T18:39:16.3+00:00

    This solution did it for me: https://blog.mindcore.dk/2023/11/how-to-migrate-bitlocker-keys-from-all-fixed-drives-to-microsoft-entra-id/

    Fixed all my bitlocker AAD Intune issues.

    0 comments No comments