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*") }
Tuesday, June 8, 2010
Subscribe to:
Post Comments (Atom)
2 comments:
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.
Post a Comment