Export permissions of all users Mailbox Folders

Hi, 

I need to check the permission at mailbox folder levels (e.g inbox, sent items, custom created folders etc...) for all our mailboxes. How can I achieve same without running Get-FolderPermission for each folder of each mailbox?

T

April 2nd, 2015 3:34pm

Hello,

You can use:

$Mailbox = Get-Mailbox -resultsize unlimited | foreach {$Mailbox (Get-MailboxFolderPermission -identity $alias:\Inbox | select User, FolderName, AccessRight)}

Thanks,

Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com

Free Windows Admin Tool Kit Click here and download it now
April 3rd, 2015 11:33am

Thank you for the response. However this will get permission only for the inbox folder. I need the permission for the folders, even if the user have some custom folders?

Regards,

Irfan

April 4th, 2015 11:58am

Hello,

 

You can use get-mailboxstatistics to list all the users folder name in a variable and use foreach to list their permission.

 

For the detailed scripts, you can ask on Exchange Development Forum:

https://social.technet.microsoft.com/Forums/office/en-US/home?forum=exchangesvrdevelopment

 

Thanks, Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com

Free Windows Admin Tool Kit Click here and download it now
April 26th, 2015 12:50pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics