You plan to deploy an Office 365 tenant to multiple offices around the country.
You need to modify the accounts that are authorized to administer the Rights Management service.
Which Windows PowerShell cmdlet should you run?
A.
Enable-AadrmSuperUserFeature
B.
Add-MsolGroupMember
C.
Add-AadrmRoleBasedAdministrator
D.
Get-AadrmRoleBasedAdministrator
Explanation:
https://docs.microsoft.com/en-us/powershell/module/aadrm/get-aadrmrolebasedadministrator?
view=azureipps
A “Get” command to modify?? Isn’t the “Get” command only for query?
Explanation of D. Answer
PS C:\>Get-AadrmRoleBasedAdministrator
This command lists the role-based administrators for Rights Management.
Explanation of C. Answer
PS C:\>Add-AadrmRoleBasedAdministrator -SecurityGroupDisplayName “Finance Employees”
This command grants administrative rights to the Azure Rights Management service for the group that has a display name of “Finance Employees”.
The correct answer is C. Add-AadrmRoleBasedAdministrator
https://docs.microsoft.com/en-us/powershell/module/aadrm/add-aadrmrolebasedadministrator?view=azureipps
I agree with Daniel…
Check the link to the “Explanation” :
https://docs.microsoft.com/en-us/powershell/module/aadrm/add-aadrmrolebasedadministrator?view=azureipps
It implies “C”
Agree with Daniel.
You first need to get list of admins, therefor D.
Agree with TH
It does not say which cmd should you run first so C 😉