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!
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