Forum Discussion
RocknRollTim
Jul 29, 2023Copper Contributor
Export of shared mailboxes with their mail security groups and their owners
Hi all, I am needing to generate a list of shared mailboxes with their mail security groups and their owners. I have scouted Google numerous times including asking ChatGPT but this is the closes...
sjpostsr
Aug 28, 2024Copper Contributor
RocknRollTim
Do you have access to Exchange Online via a browser?
You may need to change your connect statement to something like:
Connect-ExchangeOnline -userprincipalname <login>
If you are dealing with a large number of mailboxes or groups, you may have to change the statement to include -ResultSize Unlimited
$sharedMailboxes = Get-Mailbox -RecipientTypeDetails SharedMailbox -ResultSize Unlimited
$securityGroups = Get-DistributionGroup -RecipientTypeDetails MailUniversalSecurityGroup -ResultSize Unlimited
Otherwise, it may only pull the first 1000 objects and you will not get your complete list