Last updated: 2017-11-11
A new PowerShell script to export all mailbox folder permissions has been published to TechNet Gallery and GitHub.
This script exports all mailbox folder permissions for mailboxes of type „UserMailbox“. The permissions are exported to a local CSV file.
CSV Eample
„Mailbox“;“FolderName“;“User“;“AccessRights“
„Mustermann, Max (mmustermann)“;“Tasks“;“Doe, John“;“Editor“
„Mustermann, Max (mmustermann)“;“Calendar“;“Doe, John“;“Editor“
„Mustermann, Max (mmustermann)“;“Inbox“;“Doe, John“;“Reviewer“
„Mustermann, Max (mmustermann)“;“Custom Folder“;“Doe, John“;“Reviewer“
This script is based on Mr Tony Redmonds blog post http://thoughtsofanidlemind.com/2014/09/05/reporting-delegate-access-to-exchange-mailboxes/
Example
.Get-MailboxPermissionsReport.ps1 -CsvFileName export.csv
Links
- GitHub: https://github.com/Apoc70/Get-MailboxPermissionReport
- TechNet Gallery: https://gallery.technet.microsoft.com/Export-all-user-mailbox-155a33de
Enjoy.