Pech, I have written this batch file for you to try. It should do everything you need and launch your KiXtart script file.
We find that copying the KiXtart files to the client improves performance and increases stability on Win9x computers.
code:
echo off
:: Determine OS
IF '%OS%'=='Windows_NT' GOTO WinNT
SET windir=
IF '%windir%'=='' SET OS=DOS
IF '%OS%'=='' IF '%windir%'=='' SET OS=Windows_3.x
IF '%OS%'=='' SET OS=Win9x
IF '%OS%'=='Win9x' GOTO Cont
echo DOS and Windows 3.x are not supported!
pause
goto End
:WinNT
Xcopy /D %LOGONSERVER%\NETLOGON\kix32.exe %TEMP%\Kix32.exe
%TEMP%\kix32.exe %LOGONSERVER%\NETLOGON\RunScript.kix
goto end
:Win9X
Xcopy /D %0\..\kix32.exe %windir%\Kix32.exe
Xcopy /D %0\..\kx32.dll %windir%\kx32.dll
Xcopy /D %0\..\kx16.dll %windir%\kx16.dll
Xcopy /D %0\..\kx95.dll %windir%\kx95.dll
%windir%\kix32.exe %0\..\RunScript.kix
:end
exit
[ 26. November 2002, 03:55: Message edited by: Howard Bullock ]