Exchange 2010 – List Management Roles Assigned to User

The following Exchanage Management Shell commandlet can be used to list all the management roles assigned to a user account.

In this example we will list all the roles assigned to ‘Tom Smith’.

Get-ManagementRoleAssignment -GetEffectiveUsers | ?{$_.EffectiveUserName -eq "Tom Smith"} | select Role

MSExchange2010-ManageRole5