Kerry,

You should be able to do this -

Is it not supposed to be?
Code:

@Echo Off
CLS
XCOPY %0\..\KIX32.EXE c:\kix\2001\ /D /H /I /R /V > NUL
SET KIXDIR=c:\kix\2001
%KIXDIR%\KIX32.exe %logonserver%\netlogon\logon.KIX
exit



Or rather -
Code:

@Echo Off
CLS
COPY KIX32.EXE %systemdrive%\kix\2001\
%systemdrive%\kix\2001\KIX32.exe %logonserver%\netlogon\logon.KIX
exit



This is better yet (this will pick up the KiX program and script right out of the NETLOGON share) -
Code:

@Echo Off
CLS
call kix32.exe logon.KIX
exit



HTH,

Kent
_________________________
Utilize these resources:
UDFs (Full List)
KiXtart FAQ & How to's