How to get a list of Dynamic Distribution Groups in Office 365

exchangemicrosoft-office-365

In Office 365 Exchange how does one obtain a list of existing dynamic distribution groups? Is power shell required?

Best Answer

You can see your groups via web UI: Exchange admin center -> recipients -> groups Then you need to search -> advanced search provide recipient types "Dynamic distribution groups" and OK it

enter image description here

Powershell is not required, but is a good option: You need to connect to Exchange Online session as per Microsoft Technet article.

Supply your Office365 admin user credentials: $UserCredential = Get-Credential

Then create a session(one line): $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection

And finally Import-PSSession $Session

When connected issue Get-DynamicDistributionGroup which will give you the list.

Related Topic