INGROUP does check other Domains, but you would still require a Trust. You can't provide credentials for many of the NT Networking commands either. As long as your are trusted to query the remote system then you should be able to run the IF INGROUP against it.


IF INGROUP('OtherDomain\Administrators')
? 'You are Admin'
ELSE
? 'You are not Admin'
ENDIF

IF INGROUP('JimsDogHouse\BoneHeads')
? 'You can bury the bone'
ELSE
? 'You can not bury the bone'
ENDIF


[ 15. May 2003, 02:19: Message edited by: NTDOC ]