Regarding the path info. It works fine for NT/W2K systems. Here is the method I employ.

CALL @LDRIVE + "\myscript.kix" (this runs for NT just fine, fails for Win 9x, but this method only fails for Win 9x systems after another script has run just prior to a script call. Ex:

Line 1-2:
COPY @LDRIVE+"\myscript.kix" "c:\myscript.kix"
CALL "C:\myscript.kix" (this works fine for both platforms)

Line 3:

CALL @LDRIVE+"\myscript2.kix" (call fails at this point)
Kix errors stating it cannot find the script this is for Win 9x systems only...NT/2000 call and execute the script just fine.