Friday, July 31, 2015

Who Has Send-As Permissions to Mailbox

Hi folks,

Here is a quick way to retrieve who has Send-As permission to a mailbox in Exchange server environment.

Get-Mailbox user1@contoso.com |Get-ADPermission|Where-Object {$_.extendedrights -like "*send*"} |select Identity,User,@{N="Access Rights";E={$_.AccessRights}}|Export-Csv Send-As.csv

We end up with the nice Excel spreadsheet as below:




Enjoy!

No comments:

Post a Comment