Nevermind, I just typed the names out it was faster ;-)
: If you are familiar with VB script you could try this:
:
: Set objGroup = GetObject _
: (LDAP://cn=mygroup,ou=myou,dc=mydomain,dc=com)
:
: For each objMember in objGroup.Members
: Wscript.Echo objMember.Name
: Next
:
:
: --Jeff
:
: