Query the Exchange Server distribution group and output the group members to a local text file !,

Source: Internet
Author: User

Query the Exchange Server distribution group and output the group members to a local text file !,

Recently, the customer has a requirement to query all the members of the Distribution Group. It is easy to use PS. How can this problem be solved? The Code is as follows:

This POWERSHELL is passed in exchange 2010!

Param
(
$ Temppath = "c: \ log"

# Define the log output path
)

If (! (Test-Path $ temppath ))

# Determine whether the Log Path exists. If not, create a directory.
{
New-Item-Path $ temppath

# Creating a Log Path
}

$ GroupNum = get-distributiongroup

# Output all distribution groups to a variable

Set-Location $ temppath

# Change Command Execution path
Foreach ($ groupnow in $ groupNum)

# Cyclic Distribution Group
{
$ Groupmember = get-distributiongroupmember-identity $ groupnow. name | select name

# Output contact group members and only output names
$ Tmppath = $ temppath + "\" + $ groupnow + ". csv"

# Define the file exported by the output contact group members
$ Groupmember | Export-Csv-Path $ tmppath
# Export the contact group members as csv files

}




Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.