EMS Script
this post has been moved to
http://www.exchange-genie.com/2008/04/ems-script/
This blog is dedicated to posting information about Microsoft Exchange Server
this post has been moved to
http://www.exchange-genie.com/2008/04/ems-script/
Posted by
Exchange_Genie
at
11:00 AM
Labels: EMS, exchange 2007, exchange 2007 Service Pack 1, Exchange 2007 SP1, exchange management shell, get
1 comments:
I like your blog :)
Here's another way to get all members of the groups in one table:
foreach($group in Get-DistributionGroup -OrganizationalUnit $Ou){
Get-DistributionGroupMember $group | select @{n="DistributionGroup";e={$group.name}},@{n="MemberName";e={$_.name}},alias,primarysmtpaddress
}
---
Shay Levy
$cript Fanatic
http://scriptolog.blogspot.com
Post a Comment