I have a simple script below. The user belongs to the RADONC-FAC group and the RADONC group. The user gets the first two drive mappings under RADONC-FAC but never gets the RADONC J: drive. The same thing happens with other users of different groups. Any reason why this would not work? I'm new to Kixtart and not very sofisticated when it comes to scripting in it. Any help would be great.

if ingroup("radonc-fac")
use h:"\\unmcrad\radusers"
use i:"\\unmcrad\radonc-fac"
endif

if ingroup("radonc-staff")
use h:"\\unmcrad\radusers"
use i:"\\unmcrad\radonc-staff"
endif

if ingroup("radonc-rsrch")
use h:"\\unmcrad\radusers"
use i:"\\unmcrad\radonc-rsrch"
endif

if ingroup("radonc")
use j:"\\unmcrad\radonc-share"
endif