November 7, 2012

Get permissions on an account in powershell

Just a small and simple cmdlet to obtain a list of permissions that are assinged to an account (with a mailbox)


Get-MailboxPermission -Identity <account name> | fl



If you have a lot of results and wish to export them to a text file:



Get-MailboxPermission -Identity <accountname> | fl >permissions.txt

No comments:

Post a Comment