Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Fantasillion/70aec13b69fa4482773f0d02c48b512d to your computer and use it in GitHub Desktop.
Save Fantasillion/70aec13b69fa4482773f0d02c48b512d to your computer and use it in GitHub Desktop.
Office 365 List membership groups for each user
(Get-DistributionGroup).identity | ForEach-Object{
$DistributionGroupName = $_
Get-DistributionGroupMember -Identity $_ | ForEach-Object{
[PSCustomObject]@{
DistributionGroup = $DistributionGroupName
MemberName = $_.Name
#Other recipient properties here
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment