Nov 28, 2005 #1 bmclean2 MIS Jul 20, 2005 22 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 Oct 2, 2002 3,094 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