Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Fantasillion/9ea420fb536637beece303fd6eaa836a to your computer and use it in GitHub Desktop.
Save Fantasillion/9ea420fb536637beece303fd6eaa836a to your computer and use it in GitHub Desktop.
Office 365 Exchange Online Get all mail aliases for Group or Distribution List
#Get all mail aliases for group:
#Distribution Group:
Get-distributiongroup <replace brackets and contents with Group name> | select -ExpandProperty EmailAddresses
#O365 Group:
Get-UnifiedGroup <replace brackets and contents with Group name> | select -ExpandProperty EmailAddresses
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment