Hi all,

I've been searching, but I can't seem to find anyone having the same problem:

I have setup KiXtart as per the manual (as far as I can tell).

I have:

Scipt1.bat
code:
@ECHO OFF
\\Eugene\Netlogon\Kix32.exe test
EXIT

and:

code:
[B]test.kix[/B]
;
CLS
;
small
Color w+/n
? "UNE Students' Association"
;
Color w+/n
;
IF ((@time > "00:00:00") AND (@time < "12:00:00"))
? "Good Morning,"
ELSE
IF ((@time >= "12:00:00") AND (@time < "18:00:00"))
? "Good Afternoon,"
ELSE
? "Good Evening,"
ENDIF
ENDIF
;
? @fullname
? "Please Wait For Logon script Execution"
;
; Map Drives to Server "Eugene"
;
USE H: /delete /persistent
USE H: "\\Eugene\@userid"
? "Mapping Home Drive"
;
USE I: /delete /persistent
IF INGROUP("Domain Users")
USE I: "\\Eugene\Global"
? "Mapping Global Drive"
ENDIF
USE J: /delete /persistent
IF INGROUP("TUNE! FM Announcers")
USE J: "\\Eugene\Announcer"
? "Mapping Drive: Announcer"
ENDIF
USE K: /delete /persistent
IF INGROUP("TUNE! FM")
USE K: "\\Eugene\TUNE! FM"
? "Mapping Drive: TUNE! FM"
ENDIF
USE L: /delete /persistent
IF INGROUP("Neucleus")
USE L: "\\Eugene\Neucleus"
? "Mapping Drive: Neucleus"
ENDIF
USE M: /delete /persistent
IF INGROUP("Dental Clinic")
USE M: "\\Eugene\Dental Clinic"
? "Mapping Drive: Dental Clinic"
ENDIF
USE N: /delete /persistent
IF INGROUP("Finance and Admin")
USE N: "\\Eugene\Finance and Admin"
? "Mapping Drive: Finance and Admin"
ENDIF
USE O: /delete /persistent
IF INGROUP("Student Support")
USE O: "\\Eugene\Student Support"
? "Mapping Drive: Student Support"
ENDIF
USE P: /delete /persistent
IF INGROUP("Bookshop")
USE P: "\\Eugene\Bookshop"
? "Mapping Drive: Bookshop"
ENDIF
USE Q: /delete /persistent
IF INGROUP("Media")
USE Q: "\\Eugene\Media"
? "Mapping Drive: Media"
ENDIF
USE R: /delete /persistent
IF INGROUP("Lifesaver")
USE R: "\\Eugene\Lifesaver"
? "Mapping Drive: Lifesaver"
ENDIF

EXIT

The logon script is set on the NT4.0 Server to Script1.bat.

Loging on to NT and 2000 works fine, the drives are mapped, and all is good.

Under 9x (98 actually) the script fails to execute.

Any hints?

Thanks.

Andrew