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
JeremyMiller
Jan 28, 2019MVP
You can see sendas permissions using the Get-RecipientPermission cmdlet.
Neeraj Ail
Jan 28, 2019Copper Contributor
thanks it worked.
Get-RecipientPermission -Identity "mailbox" -AccessRights sendas | where {($_.trustee -like '*@*') }
- techyguysSep 16, 2020Copper Contributor
Neeraj Ail It worked perfectly. Thank you!!!
- Arjun_JadhavAug 11, 2021Copper Contributor
techyguys How to see members of particular Shared mailbox
- Gowher_BhatSep 17, 2021Copper ContributorGet-Mailbox -identity gowher@contoso.com -RecipientTypeDetails SharedMailbox | Get-MailboxPermission | select identity,user,accessrights | where { ($_.User -like '*@*') }