I am new to Kix. I have attempted to write a script that would map drives based on group membership. I have 2 servers kxrpc is installed on both and the service is running.
I can not get my script to work. My login scrit is %0\..\kix32.exe test.kix.
My kix script is.if ingroup ("commisioning")
use g: "\\dpspmt\commisioning"
endifif ingroup ("construction coordinators")
use f: "\\dpspmt\construction"
endif
if ingroup ("contract admin")
use j: "\\dpspmt\contract admin"
endif
if ingroup ("design")
use k: "\\dpspmt\design"
endif
if ingroup ("directors")
run "use m: "\\dpspmt\directors"
endif
if ingroup ("document control")
use n: "\\dpspmt\document control"
endif
if ingroup ("extrnal affairs")
use o:" \\dpspmt\extrnal affairs"
endif
if ingroup ("finance")
use p: "\\dpspmt\finance"
endif
if ingroup ("mbe wbe")
use q: "\\dpspmt\mbe wbe"
endif
if ingroup ("office admin")
use r: "\\dpspmt\office admin"
endif
if ingroup ("procurement")
use s: "\\dpspmt\procurement"
endif
if in group ("program control")
use t: "\\dpspmt\program control"
endif
if ingroup ("prog plan")
use u: "\\dpspmt\pro plan"
endif
if ingroup ("project managers")
use l: "\\dpspmt\project managers"
endif
exit
If anyone can help it would be great.