well, I tried a few other batch files, and a few other scripts, some very simple, and could not seem to get anything to work. Even though I'm sure there is a better answer, here's what I did. The above batch was changed to below.@echo off
IF "ITs%OS%"=="ITsWindows_NT" GOTO ClientIsNT

:ClientIs9x
if not exist %windir%\kix\kix32.exe md %windir%\kix
if not exist %windir%\kix\kix32.exe copy /y \\deathstar\netlogon\kix32.exe %windir%\kix
if not exist %windir%\system\kx32.dll copy /y \\deathstar\netlogon\kx32.dll %windir%\system
if not exist %windir%\system\kx95.dll copy /y \\deathstar\netlogon\kx95.dll %windir%\system
if not exist %windir%\system\kx16.dll copy /y \\deathstar\netlogon\kx16.dll %windir%\system
%WINDIR%\kix\kix32.EXE \\deathstar\netlogon\kick95.kix
C:
CD %WINDIR%
goto EXITBAT

:ClientIsNT
If not exist %systemroot%\kix\kix32.exe md %systemroot%\kix
if not exist %systemroot%\kix\kix32.exe copy %logonserver%\netlogon\kix32.exe %systemroot%\kix\kix32.exe
if not exist %systemroot%\kix\kick.kix copy %logonserver%\netlogon\kick.kix %systemroot%\kix\kick.kix
%SYSTEMROOT%\KIX\KIX32.EXE kick.kix
C:
CD %SYSTEMROOT%

GOTO EXITBAT
:EXITBAT

As you can tell, it also copies the kick.kix script over to the local "kix" folder, and executes it from there. So far, no problems. I know there has to be a better way, but time has been an issue, so here's where I am. If anybody has a better solution, please let me know.