Get mailbox permissions exchange 2013 on powershell
How to get Exchange 2013 premissions on PowerShell and how to see what premissions have a some Exchange Users on PowerShell?
July 15th, 2015 5:03am
Hi Svet,
You need to learn about RBAC. If you don't understand it, the PS cmdlets and output would make no sense to you.
Start from below articles.
Understanding Role Based Access Control
https://technet.microsoft.com/en-IN/library/dd298183(v=exchg.150).aspx
Exchange RBAC Tips N Tricks - PowerShell
Find A Specific User In All Roles:
Get-ManagementRoleAssignment -GetEffectiveUsers | Where { $_.EffectiveUserName -Eq "Ross Smith" }
Free Windows Admin Tool Kit Click here and download it now
July 15th, 2015 6:34am