I am having problems using Kix32 when trying to map drives based on group membership. I am really not very knowledgable on scripting so I apologize for my ignorance in advance. Below is the script i am trying to use (real names have been omitted for security reasons.


IF INGROUP("Group1")
USE J: "\\Server\Share1"
ENDIF
GOTO "SECTION2"

:SECTION2
IF INGROUP("Group2")
USE f: "\\Server\Share2"
USE g: "\\Server\Share3$"
ENDIF
GOTO "SECTION3"

:SECTION3
IF INGROUP("Group3")
USE m: "\\Server\Share4"
ENDIF
GOTO "END"

:END
EXIT

The first drive gets mapped, but nothing else does. I am sure it is something stupid but I can't figure it out. Your help is much appreciated. Thanks.