You guys are the best. It is now finding the users in the group as it should.
So what I did is, in the batch file that calls the KiX executable, I put the following:
Code:
%SYSTEMDRIVE%\NWSUTIL\kix32 /f
START /MIN %LOGONSERVER%\NETLOGON\kixgui.exe


Now I guess I am calling kix32 twice, so should I modify the way I am encrypting my script using kixcrypt?
Here is the current syntax I use:
Code:

kixcrypt -e "%SYSTEMDRIVE%\NWSUTIL\kix32.exe %KIXCRYPTFILE%" kixgui.scr -m "Please wait..." -t C:\NWSUTIL


I guess this should be changed to:
Code:

kixcrypt -e "%SYSTEMDRIVE%\NWSUTIL\kix32.exe /f %KIXCRYPTFILE%" kixgui.scr -m "Please wait..." -t C:\NWSUTIL


Does this look right? I would like to include the /f in the encrypted executable if possible to avoid an extra call.

Thanks guys!