seandragon,

You could use a timer to slow down the process.

Kent, MCA:

A better approach for the batch file would be:

code:
@echo off
if exist %windir%\system32\kix32.exe goto client
kix32.exe script.kix
goto end
:client
%windir%\system32\kix32.exe %logonserver%\netlogon\testras.kix
:end

On my system 2000 is installed on the F: drive. This batch would also work if the client PATH was invalid or screwed up, just calling by path might fail on some clients. NT/2000/XP (according to MS) already know where they are in the environment during logon, so they don't need to be told the path to the logon server either. So would work on all logon servers as well.