Question #1: I'm using an NT4 Domain with a PDC and BDC I've gone ahead and installed KIX32.exe,Kx16.dll and kix32.dll in location \\winnt\system32\repl\import\Scripts the files also show up in the NETLOGON when I drill down in My Network Places. A couple of problems that I'm having is that when I login my drives do not map but when I drill down and double click on logon.bat which executes
@ECHO OFF
\\servername\netlogon\kix32.exe \\servername\netlogon\mmb.kix

All my drives map to my locations with an error message that says cmd.exe was started with the above path as the current directory. UNC paths are not supported. Defaulting to windows directory.

Can get this one resolved.

Question number 2

in my mmb.kix file I need to set code to be able to map to the individuals home drive. Here is the code that I'm using below where do I enter the code to map to my home drives.

$group = "Windows Group 1"
$drive = "F:"
$path = "\\server\share"
GOSUB "MAPDRIVE"

$group = "Windows Group 2"
$drive = "G"
$path = "\\server\share"
GOSUB "MAPDRIVE"

$group = "Windows Group 3"
$drive = "H:"
$path = "\\server\share"
GOSUB "MAPDRIVE"

:MAPDRIVE
IF LEN("$group") = 0 OR INGROUP("$group") = 1
IF EXIST("$drive\") = 1
USE $drive /DELETE
IF @ERROR > 0
? " Recieved Error(@error) when disconnecting $drive."
ENDIF
ENDIF
USE $drive "$path"
IF @ERROR = 0
? " Successfully connected $drive to $path for group $group."
ELSE
? " Error(@ERROR) trying to map $drive to $path for group $group."
ENDIF
ENDIF
RETURN

I will appreciate any help that is given to me
thank you
Joel