Listing permissions for all folders in a given mailbox

Just a snippet I came up with just now to show all (sharing) permissions for a given mailbox.

    Get-MailboxfolderStatistics -Identity $upn | % {
        try{
            Get-MailboxFolderPermission -Identity $_.Identity.Replace("\",":\") -ErrorAction SilentlyContinue
        }catch{$Null}
    }
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Most Voted
Newest Oldest
Inline Feedbacks
View all comments