I'm currently using a vbs file which works for users in the same domain as the group, but for groups containing people in a different domain, the results are blank. Is there another way to extract the users out of the group?
Dim Group
Dim User
Set Group = GetObject("WinNT://" & strDomain & "/" & strGroup & ",group")
For Each User in Group.Members
.. s = s & vbCrLf & User.Name'.. is only to indent the line for this post
Next
