Here is an example to show all members of a specified group within an OU named Groups

You need to supply your real path to the container and the name of the group to check. Then from a command console run KIX32.EXE THIS_SCRIPT.KIX and you should get back what you're looking for.

break on
dim $iRC
$iRC=setoption('Explicit','on')
$iRC=setoption('NoVarsInStrings','on')

ListGroupMembers('GRAPHICS')

function ListGroupMembers($Group)
dim $CheckGroup,$Member
$CheckGroup = getobject('LDAP://CN='+$Group+',ou=Groups,dc=mycompany,dc=com')
for each $Member in $CheckGroup.members
? 'Members of: ' +$Group+' '+$member.SamAccountName+' '+$member.fullname
next
endfunction