Get the Members of an Exchange 2007 Distribution Group

Many a times we are faced with the task of getting all the members in a distribution group, especially in a large group. It is very easy with Powershell. Run the following command,

Get-DistributionGroupMember –identity “group name”

In order to select the properties we need, pipe the command to format-table with the necessary values.

Get-DistributionGroupMember –identity “group name” | ft name, primarysmtpaddress

As usual, we can export the output to a txt or csv file.

Get-DistributionGroupMember –identity “group name” | ft name, primarysmtpaddress | Export-CSV c:members.csv

 

http://www.howexchangeworks.com/2009/10/get-members-of-exchange-2007.html

 

1 min read

The Exchange 2007/2010 Offline Address Book Generation Process

The Exchange 2007/2010 Offline Address Book (OAB) can be a pain to manage in environments where users expect instant access to updates to the Global...

Read More

1 min read

Exchange 2010 Dynamic Distribution Group not working

There is a bug in the creation process for Dynamic Distribution Groups (DDG) in Exchange 2010. When you use the Exchange Management Shell to create a...

Read More
Diagnose Data Platform Scalability for AI & BI Workloads

1 min read

Diagnose Data Platform Scalability for AI & BI Workloads

When enterprise data platforms underperform, the root cause is not always immediately obvious. A Power BI semantic model starts returning capacity...

Read More