Azure AD

Restrict Access to BitLocker Recovery Key (Preview)

cubesys
Share this blog post on Twitter Share this blog post on Facebook Share this blog post on LinkedIn

When BitLocker is enabled on a Windows device, the recovery key can be saved to Azure Active Directory (Azure AD), a USB, a file, or even printed. End-users can access this key for their owned device through Azure AD or by going to their device properties.  

If you don’t know how to access it through Azure AD, first go to Azure AD and then click on the Devices blade. From here, you can access the BitLocker keys (Preview).  

Restricting access to the BitLocker recovery key in Azure 

First, you need to make sure that you’ve updated your authorisation policy to turn off the self-service BitLocker key access, which can be done using the Microsoft Graph PowerShell module.  

  • Connect-MgGraph -Scopes Policy.ReadWrite.Authorization 
  • $authPolicyUri = “https://graph.microsoft.com/beta/policies/authorizationPolicy/authorizationPolicy” 
  • $body = @{ 
  •    defaultUserRolePermissions = @{ 
  •         allowedToReadBitlockerKeysForOwnedDevice = $false #Set this to $true to allow BitLocker self-service recovery 
  •     } 
  • }| ConvertTo-Json 
  • Invoke-MgGraphRequest -Uri $authPolicyUri -Method PATCH -Body $body 
  • # Show current policy setting 
  • $authPolicy = Invoke-MgGraphRequest -Uri $authPolicyUri 
  • $authPolicy.defaultUserRolePermissions 

Once this authorisation policy has been updated, the following Azure AD roles will be able to access they key: 

  • Global administrators 
  • Security administrators 
  • Intune Service administrators 
  • Security readers 
  • Any custom role with the right permissions 

Leave a Comment

Related Articles

Office 365 Exchange

Exchange Online – The ‘Move message to Junk Email folder’ option is being retired in EOP

If you use Exchange Online Protection (EOP) and have configured ‘Move message to Junk Email folder’ for high confidence spam and phishing emails you need to be aware...

cubesys
Read More
Office 365 Exchange

Exchange Online – It is now easier to allow end-users to report message and provide customized message

Exchange and Security & Compliance administrators now have the ability to enable the ‘Report Message’ add-in from the Security and Compliance portal (...

cubesys
Read More

About

  • Menu Item One
  • Menu Item Two
  • Menu Item Three

Services

  • Menu Item One
  • Menu Item Two
  • Menu Item Three

News

  • Menu Item One
  • Menu Item Two
  • Menu Item Three
Follow us on Facebook Follow us on LinkedIn Follow us on Twitter Follow us on Instagram