Forum Discussion
Carlos Yohn Zubiría
Sep 04, 2018Copper Contributor
Listing shared mailboxes and members - Powershell
Hi, Does anyone knows how to get a list of shared mailboxes and members with powershell? Thanks in advance, Regards
Paris Wells
Nov 01, 2018Copper Contributor
Here is the powershell to get this
Get-Mailbox -RecipientTypeDetails SharedMailbox -ResultSize:Unlimited | Get-MailboxPermission | select identity,user,accessrights | where { ($_.User -like '*@*') }
Sean-Murphy
Oct 16, 2019Copper Contributor
Paris Wells Just wanted to say thank you! This worked perfectly. Piped it to Export-CSV, turned that into an XLSX and off to management it goes for review.
Thanks!