Instead of requiring a specific KiXtart command to access AD information you should use generic queries.

Try the following to enumerate group membership for your workstation (make sure it is in a couple of groups)
 Code:
Break ON
$=SetOption("WrapAtEOL","ON")
 
$oADInfo=CreateObject("ADSystemInfo")
$oComputer=GetObject("LDAP://"+$oADInfo.ComputerName)
For Each $oGroup in $oComputer.GetEX("memberOf")
	$oGroup ?
Next