Ok. Here's the batch file to call the KIX script:

@Echo Off
CLS
Echo "Test file for calling test.kix"
%WINDIR%\SYSTEM\KIX32.EXE c:\mydocu~1\kixtest\test.kix
Echo "Back in batch file"
pause
exit

Here's the test script:

;debug on
dim $testname
$testname="testing"
? "Test Script now processing..."
SHELL "winset.exe USERNAME=@USERID"
? @userid " userid"
SHELL "winset.exe DOMAIN=@DOMAIN"
? @domain " domain"
? $testname
$testname = ingroup("COE-CEP")
? $testname
EXIT

Here's the results:

"Test file for calling test.kix"

Test Script now processing...
DFENWICK userid
UNR domain
testing"Back in batch file"
Press any key to continue . . .

I did get networking to install the kxrpc on the dc's, but didn't have any better luck when I pointed my login script to them, instead.

Is there a possability of a problem with something timing out? script processing seems to be taking forever when it has anything to do with getting to the DC's.

Dan