Hi All!

Ok i'm new so be gentle. I'm also new to Kixtart scripting.
I'm needing a script that will check for the users group(InGroup no problem) and map drive(s) accordingly. Right now I use the

Select
Case InGroup("\\RDC\GroupName")
Use K: /del
Use K: "\\Server\Folder"
Case 1
;No Drive K for you
EndSelect

Select
Case InGroup("\\RDC\GroupName2")
Use H: /del
Use H: "\\Server\Folder2"
Case 1
;No Drive H for you
EndSelect

Problem is the user may belong to both group K & H and need both drives mapped. This is the only way I have figured out to make it work. Is there a better way to check and map drives for my users that may need multiple drives mapped?

Thanks.