Modified the example in the fnLDAPQuery() documentation...

 Code:
 ; == Return the Name, AdsPath and members of all groups =========
 $aAttributes = "cn", "description" ; "Name", "AdsPath", "member"
 $sADsPath = "LDAP://"+GetObject("LDAP://rootDSE").Get("defaultNamingContext")
 $strFilter = "(&(objectClass=group)(cn=Pack*))"

 $aResults = fnLDAPQuery($aAttributes,$sADsPath,$strFilter)
 @ERROR " | " @SERROR ?

 For $c = 0 to Ubound($aResults)
     For $r = 0 to UBound($aResults,2)
         "=============================" ?
         If VarType($aResults[$c,$r])>8192
            "  Description:" ?
            For Each $rr in $aResults[$c,$r]
                "   " $rr ?
            Next
         Else
            $aResults[$c,$r] ?
         EndIf
     Next
     ?
 Next