Tuesday, June 8, 2010

Auditing Mailboxes with Full Mailbox access permissions on it

a common question, here is a nice Script to audit it, you can then export it to HTML or CSV:
Get-Mailbox -ResultSize Unlimited | Get-MailboxPermission | where { ($_.AccessRights -eq "FullAccess") -and ($_.User -like "*User1*") }

2 comments:

Jhon Drake said...
This comment has been removed by the author.
james marsh said...

thanks for sharing this PowerShell command, I found good information from https://www.netwrix.com/exchange_server_auditing.html?rid=gDd88kwH which provides allows to audit user’s mailbox multiple report and enable auditing for logging on means who logged-on, at what time and from which ip address on particular mailbox of exchange server.