Forum Discussion
Delegate access for Advanced Security Management
- Jan 01, 2017
Security Admin is a MSOL (MS Online) role and you can manage it via the MS Online Powershell.
First dump the roles:
Get-MSOLRole
Next locate the ObjectID for the Security Administrator role and copy that.
Now run get-MSOLRoleMember to view who has this role
To add you run:
Set-MSOLRoleMember -ObjectID <value> -RoleMemberEmailAddress <value>
Hope this helps.
Security Admin is a MSOL (MS Online) role and you can manage it via the MS Online Powershell.
First dump the roles:
Get-MSOLRole
Next locate the ObjectID for the Security Administrator role and copy that.
Now run get-MSOLRoleMember to view who has this role
To add you run:
Set-MSOLRoleMember -ObjectID <value> -RoleMemberEmailAddress <value>
Hope this helps.
- Casey CotitaAug 24, 2017Copper Contributor
For those coming after, the actual syntax is:
Add-MSOLRoleMember -RoleObjectID <ObjectID> -RoleMemberEmailAddress <EmailAddress>