When using the kix32.exe in kix01.400b2 (and earlier 2000 releases), one of my kix scripts dies. It works perfectly using the kix32.exe from the 363 release (and earlier). I imagine it is because my "ingroup" check contains long names that the new version doesn't parse correctly. Attached is the kix script I've successfully used for about 2 years that bombs with the latest code. My test account is in the "Indianapolis" group.
Thanks,
Mike
setconsole("hide")
Shell "Net time \\incorpserv01 /set /yes"
IF EXIST ("c:\metaframe.txt")
messagebox (@fullname+" Welcome to MetaFrame","Logon",0,2)
quit
ENDIF
Select
Case (ingroup ("Chicago"))
Call "CHIC.KIX"
Case (ingroup("cols"))
Call "COLS.KIX"
Case (ingroup("clev"))
Call "CLEV.KIX"
Case (ingroup("cinc"))
Call "CINC.KIX"
Case (ingroup("Dallas"))
Call "DALL.KIX"
Case (ingroup("Jacksonville"))
Call "JACK.KIX"
Case (ingroup ("Nashville"))
Call "NASH.KIX"
Case (ingroup ("St. Louis"))
Call "STLU.KIX"
Case (ingroup ("Minneapolis"))
Call "MPLS.KIX"
Case (Ingroup ("Atlanta"))
Call "ATLA.KIX"
Case (Ingroup ("Raleigh"))
Call "RLGH.KIX"
Case (Ingroup ("Orlando"))
Call "ORLA.KIX"
Case (Ingroup ("Tampa"))
Call "TMPA.KIX"
Case (ingroup("Spartanburg"))
Call "SPBG.KIX"
Case ingroup("Indianapolis")
Call "INDY.KIX"
EndSelect
quit