-
-
Notifications
You must be signed in to change notification settings - Fork 6k
Closed
Labels
Description
Please confirm:
- I have searched existing feature requests (open and closed) and found no duplicates.
- **me or my organization is currently an active sponsor of the product at the $99,- level.
Problem Statement
We'd like to adjust the below settings within CIPP settings or Standards (likely a standard would work best)
"Users may join devices to Microsoft Entra" > Admins only
"Registering user is added as local administrator on the device during Microsoft Entra join (Preview)" > Disabled
"Restrict users from recovering the BitLocker key(s) for their owned devices" > Yes
Benefits for MSPs
More control of the settings and can be defaulted across their clients.
Value or Importance
Important and a good nice to have.
PowerShell Commands (Optional)
- Restrict device join to admins only
Write-Host "Setting: Only admins can join devices to Microsoft Entra..."
Update-MgPolicyAuthorizationPolicy -DefaultUserRolePermissions @{
AllowedToJoinDevices = $false
}
2. Disable local admin rights for registering user during Entra join
Write-Host "Disabling local admin rights for registering users..."
Update-MgPolicyDeviceRegistrationPolicy -LocalAdminEnabled $false