If someone is not receiving the permissions you think they should, they may not be a member of the required role group. The steps outlined previously should help you determine if this is the case, but it may be as simple as making sure the administrator has been added to the right role group that will assign the appropriate roles. You can retrieve the members of a role group in the Shell using the Get-RoleGroupMember cmdlet. This command will return all the members of the Organization Management role group:
Get-RoleGroup 'Organization Management' | Get-RoleGroupMember
You can also use these cmdlets to generate a report of all the members of each role group. For example, the following code will display the member of each ...