Forum Discussion
FcoManigrasso
Mar 23, 2023Iron Contributor
Get permissions for all folders in a mailbox: PS
Hi Community, Many times, as admins, we need to export all the folder permissions for a specific, ( or many ), mailbox/es. Why? . Aduit reasons . Backup reasons . Replicate the permissions ...
Thiraviam5316
Jul 27, 2023Brass Contributor
FcoManigrasso You can easily export all permissions of the specific folder in exchange online using the single cmdlet:
Get-MailboxFolderPermission -Identity <UserUPN>:\<FolderName> | Export-CSV <FilePath>
For for info on mailbox folder permission management, do refer: https://m365scripts.com/exchange-online/microsoft-365-mailbox-folder-permission-management-using-powershell/
- FcoManigrassoJul 27, 2023Iron Contributor
Hi Thiraviam5316,
Sure, that's the standard cmdlt for a folder permission. My post talks about a complete report with all the folders and excluding the system permission ones. Take a look to my script or the one that Andres Bohren shared, those are very useful for such activities.
Anyway, thanks for the clarification 🙂
Have a good day.