Exchange email groups
We have 30 email groups set up and i need to make a list of who is in what group. is there a script or a way to export this information into an excel file or something?
June 12th, 2007 8:53pm
One easy way is to expand the group in outlook, then copy/paste into excel.
Free Windows Admin Tool Kit Click here and download it now
June 13th, 2007 9:11pm
This should do it per group it may take some time though.
I also remember there was a exe in the resource kit named members, or memberof that could export the contents.
Set objGroup = GetObject("LDAP://CN=lcstestgroup,OU=Groups,OU=MESS,OU=CE,DC=mess,DC=ce")
For Each objMember In objGroup.Members
Wscript.Echo objMember.samaccountnameNext
June 15th, 2007 5:04pm