I have dug around for this but cannot find anything definitive. I am trying to call a SMS bat file from a kix script. I am in a NT4 domain with all users running a logon.bat file that calls the kix script. From the kix script i wish to call the sms bat file to remove the sms client. Here is the script, i am able to map the drives correctly but it's the sms bat file i am having problems with Code:
;REM MAP DRIVE FOR J, K, and O drive mapping
IF INGROUP ("EDCTEST\Domain Users")
USE K: /DELETE /PERSISTENT
USE K: "\\DC1\FS2" /PERSISTENT
USE J: /DELETE /PERSISTENT
USE J: "\\dc1\FS1" /PERSISTENT
USE o: /DELETE /PERSISTENT
USE o: "\\dc1\oracle" /PERSISTENT
ENDIF

IF INGROUP ("EDCTEST\smsremove")
CALL \\sms20\sp\i386\20clicln.bat

ENDIF


EXIT