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 '*@*') }
MemoDTSD
Apr 03, 2020Copper Contributor
Paris Wells Thanks Buddy, its working good!! \you help me a lot!