|
IF INGROUP("Engr") or INGROUP("Truss") or INGROUP("Receptionist") ; Make sure the user can run MATLIST -- they need a .get file and it gets ; created automatically if they don't have one (copied from one that works) IF NOT EXIST("\\corpsrv\data\batch\paths\@USERID.get") ;cp \\corpsrv\data\batch\paths\jenny.get \\corpsrv\data\batch\paths@USERID.get ENDIF
; The program was written to use a variable that exists in Novell but not NT, so we set it here SETM "LINAME=@USERID" ? "LINAME set to @USERID" ; for MATLIST program -- look in %L\DATA\BATCH\PATHS\username.get
; Set up drive mappings here (X will go away eventually) USE L: \\corpsrv\engr USE G: \\corpsrv\apps USE Q: \\corpsrv\data USE U: \\corpsrv\utils use X: \\corpsrv\X ENDIF
I get an error in the kixtart script if I have the IF line setup that way. If I take out everything but INGROUP("Engr") it works fine.
|