Share via

How To Get Mailbox Non-Owner Access Report using PW Cmdlet?

Anonymous
2020-10-24T11:17:48+00:00

How to generate a list of administrators who have accessed other users mailboxes, either using "Full Access" permissions OR using "Impersonation"? 

Thanks!

Microsoft 365 and Office | Subscription, account, billing | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2020-10-24T13:32:29+00:00

Hi Pawan Amedi (pawan),

Welcome to post in the community. You can use the Exchange PowerShell Search-MailboxAuditLog to search mailbox audit log entries matching your specified search terms. Here is an example to for you requirement:

Search-MailboxAuditLog -StartDate '2020-10-14'-EndDate '2020-10-24' -LogonTypes @('Admin, Delegate') -ExternalAccess:$false -showDetails:$true -resultSize 20000 | Export-Csv -Path

I hope the above information helps for you.

Best Regards,

Shawn

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Anonymous
    2020-10-25T09:25:09+00:00

    That's it!

    Was this answer helpful?

    0 comments No comments