The Kix files are on the local drive. Only the script file is on the Netlogon share.

Here is the NT script:
echo off

rem mapping the Shared directory
net use h: \\server\share

rem mapping the User directory
net use g: /home

@echo off
rem Ensure the Kixtart DLLs are installed on Win9X
rem IF NOT EXIST C:\SCR XCOPY %0\..\SCR\*.* C:\SCR\*.* /D /H /I /R /V > NUL
XCOPY %0\..\SCR\*.* C:\SCR\*.* /D /H /I /R /V /C /Y > NUL

rem Run the main Kixtart script
C:\SCR\KIX32.EXE %0\..\script.kix

The Kix script:
; KIXTART.SCR
;
CLS

IF INGROUP ("GroupName")
USE I: "\\SERVER\SHARE"
ENDIF

IF INGROUP ("GroupName")
USE J: "\\SERVER\SHARE"
; USE J: "\\SERVER\SHARE"
ENDIF

:END
Exit

There's more to the script but that's the beginning and it doesn't do that much when using RAS.