Azure AD application with Global Administrator rights

荒凉一梦 提交于 2019-12-08 15:19:31
Shawn Tabrizi

Take a look at my answer here.

You can elevate the level of access an Application has in your tenant by adding the service principal of that application to the Company Administrator Directory Role. This will give the Application the same level of permissions as the Company Administrator, who can do anything. You can follow these same instructions for any type of Directory Role depending on the level of access you want to give to this application.

Note that this will only affect the access your app has in your tenant.

Also you must already be a Company Administrator of the tenant to follow these instructions.

In order to make the change, you will need to install the Azure Active Directory PowerShell Module.

Once you have the module installed, authenticate to your tenant with your Administrator Account:

Connect-MSOLService

Then we need to get the Object ID of both the Service Principal we want to elevate, and the Company Administrator Role for your tenant.

Search for Service Principal by App ID GUID:

$sp = Get-MsolServicePrincipal -AppPrincipalId <App ID GUID>

Search for Directory Role by Name

$role = Get-MsolRole -RoleName "Company Administrator"

Now we can use the Add-MsolRoleMember command to add this role to the service principal.

Add-MsolRoleMember -RoleObjectId $role.ObjectId -RoleMemberType ServicePrincipal -RoleMemberObjectId $sp.ObjectId

To check everything is working, lets get back all the members of the Company Administrator role:

Get-MsolRoleMember -RoleObjectId $role.ObjectId

You should see your application in that list, where RoleMemberType is ServicePrincipal and DisplayName is the name of your application.

Now your application should be able to perform any Graph API calls that the Company Administrator could do, all without a user signed-in, using the Client Credential Flow.

Let me know if this helps!

UPDATE:

The answer above has been updated to use Azure Active Directory V2 PowerShell

If you don't have the AzureAD module already installed you will need to install it. See Azure Active Directory PowerShell Module Version for Graph for Azure AD administrative tasks for more info about the module or simply run:

Install-Module AzureAD

Once you have the module installed, authenticate to your tenant with your Administrator Account:

Connect-AzureAD

Then we need to get the Service Principal we want to elevate, and the Company Administrator Role for your tenant.

 $sp = Get-AzureRmADServicePrincipal | Where DisplayName -eq '<service-principal-name>'

Search for Directory Role by Name

$role = Get-AzureADDirectoryRole | Where DisplayName -eq 'Company Administrator'

Now we can use the Add-AzureADDirectoryRoleMember command to add this role to the service principal.

Add-AzureADDirectoryRoleMember -ObjectId $role.ObjectId -RefObjectId $sp.Id

To check everything is working, lets get back all the members of the Company Administrator role:

Get-AzureADDirectoryRoleMember -ObjectId $role.ObjectId

You should see your application in that list, where DisplayName is the name of your application.

Now your application should be able to perform any Graph API calls that the Company Administrator could do, all without a user signed-in, using the Client Credential Flow.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!