Posts
47
Comments
55
Trackbacks
0
How to get DL membership in Exchange 2007

Abshishek reminded me of this with his post on how to figure out Security Group membership using PowerShell. But Distribution Groups are a whole different beast. So how do you do it? One way is to use the GUI: the awesome Exchange Management Console already shows you group membership. And on the cmdline you can do this in Exchange 2007:

Using server side filtering (faster):

   $filterid = (get-user Administrator).Identity get-group -filter { Members -eq $filterid }

Using client side filtering (slower):

   get-group | where { $_.Members -like '*Admin*' }

This can be adapted to do nested membership as well---I'll leave it to you to figure out how.

posted on Sunday, October 22, 2006 11:10 PM Print
Comments
Gravatar
# re: How to get DL membership in Exchange 2007
Bedava oyunlar
5/7/2008 5:34 PM
  
Useful tips. thanks . Bookmarked!

Post Comment

Title *
Name *
Email
Url
Comment *  
Please add 6 and 1 and type the answer here:
News
A little slow these days as I'm busy working on exchangelabs.com. I will try and post tidbits when I get some time. Enjoy the older posts till then!