Mailbox Assignments
Exports all non-default mailbox permissions (delegates, shared access, etc.) to CSV. Filters out the default NT AUTHORITY\SELF entries.
Script
Get-EXOMailbox -ResultSize Unlimited |
Get-ExoMailboxPermission |
Where-Object { $_.User -notlike "NT AUTHORITY\SELF" } |
Select-Object Identity, User, PrimarySmtpAddress, Deny, AccessRights, IsInherited |
Export-Csv -Path "~/mailboxpermissions.csv" -NoTypeInformationOutput
Exports a CSV with:
Identity— Mailbox identityUser— The delegate/user with accessPrimarySmtpAddressDeny— Whether this is a deny permissionAccessRights— e.g. FullAccess, ReadPermissionIsInherited
Last updated on