Nov 28, 2005 #1 bmclean2 MIS Joined Jul 20, 2005 Messages 22 Location US IF I have a list of groups stored in an access table in the form: domain\group, how can I create a report that lists all of the users of each group? Thanks...
IF I have a list of groups stored in an access table in the form: domain\group, how can I create a report that lists all of the users of each group? Thanks...
Nov 28, 2005 #2 mrmovie Technical User Joined Oct 2, 2002 Messages 3,094 Location GB Set objGroup = GetObhject("WinNT://domain/" & groupname & ",group") For Each aUser In objGroup.Users Msgbox aUser.Name Next Upvote 0 Downvote
Set objGroup = GetObhject("WinNT://domain/" & groupname & ",group") For Each aUser In objGroup.Users Msgbox aUser.Name Next