Forum Discussion
Listing shared mailboxes and members - Powershell
The following should work for you:
Get-Mailbox -Filter {recipienttypedetails -eq "SharedMailbox"}
Hi Jeremy,
Thanks for your answer but what i get with this command does not shows members of shared mailboxes:
Name Alias Database ProhibitSendQuota ExternalDirectoryObjectI
d
---- ----- -------- ----------------- ------------------------
Leioandi2 Homes leioandi2.homes EURPR09DG154-db059 99 GB (106,300,44... 5c2b2147-3d01-41ce-be...
solicitudcontratos solicitudcon... EURPR09DG045-db096 49.5 GB (53,150,2... 452ac29d-4de9-4305-b4...
pp.sur pp.sur EURPR09DG130-db023 49.5 GB (53,150,2... af168196-d119-4675-8b...
- VasilMichevSep 04, 2018MVP
Shared mailboxes don't have "members", perhaps you mean a report of users that have been granted Full Access permissions to the shared mailbox? If so, try this script: https://gallery.technet.microsoft.com/Office-365-Mailbox-c2adf0db?redir=0
- Carlos Yohn ZubiríaSep 04, 2018Copper ContributorThe link you provided don’t talk about shared mailboxes but simple mailboxes permisions
Thanks anyway- JeremyMillerSep 04, 2018MVP
If you are just looking for a quick and dirty list, this may help. Otherwise the script that Vasil pointed you to should also work.
Get-Mailbox -Filter {recipienttypedetails -eq "SharedMailbox"} | Get-Mailboxpermission
- Carlos Yohn ZubiríaSep 04, 2018Copper ContributorHi,
As far as i know, MS call them “members”. You can see it here: https://support.office.com/en-us/article/add-or-remove-members-from-a-shared-mailbox-a1cd0ae0-216c-4dc1-8171-bfacfbd4c1a7
And every other MS sites.
However, i’ll see the link you provide and let you know.
Thanks.