Hi All,

I've been searching around a bit and I am not entirely sure what the command is that I am looking for here. I will try and describe what I am hoping to accomplish. This is my first time tinkering with Kix so I am VERY green.

Currently, we have AD Login groups that we use Kix to map the drives for users. Kix is seaparted out so logingroupxxx gets a corresponding script. We just had a reorganization and login groups are all out of whack.

We have users that need to switch scripts but keep certain drives from their old script. Is there anyway to do that with just adding if statements to what we have already or do I need to make new groups all together?

Our scripts look something like this:
 Code:
Case INGROUP("LOGINSYSOPS")
    USE O: /delete /persistent
    USE N: /delete /persistent
    USE M: "\\DFS\Share"
    USE N: "\\DFS\Share"
    USE O: "\\DFS\Share"
    USE P: "\\DFS\ShareC"
    USE T: "\\DFS\Share"
    USE X: "\\DFS\Share"   


What I would like to happen is have it check for another group as well, so run the above and then
If InGroup("additionalgroup")
use Z: "\\DFS\Share"
EndIf

If the only way to accomplish it is to make a new gorup all together then that is what I will do, we were just talking about stream lining this a bit more so given AD groups get given mapped drives universally. Unfortunately, we had almost everything organized by department and the majority of those departments no longer exist after the organizational changes so we want to implement a more long term fix.