Les, wait... save it for a good one
Kennyboy - no your not missing it.
You can run everything from the NETLOGON without a problem. The reason some members copy to the machine locally is that the .EXE and .DLL functions can respond a little faster (not all that much though on a high speed LAN)
If you don't have any XP systems to worry about you can do it this way.
%0\..\kix32.exe %0..\logon.kix
That should work for your clients.
If you want or need to get fancy with checking the OS type you can use this type of bat file I wrote a while back.
code:
@ECHO OFF
IF NOT "%OS%" == "Windows_NT" GOTO WIN9X
VER|FIND /I "XP" >NUL && IF %ERRORLEVEL% EQU 0 GOTO XP
IF not "%ALLUSERSPROFILE%" == "" GOTO WIN2K
IF "%OS%" == "Windows_NT" GOTO NT4
GOTO END
:XP
ECHO Found Windows XP
REM Or what ever command you want to run.
GOTO END
:WIN2K
ECHO Found Windows 2000
REM Or what ever command you want to run.
GOTO END
:NT4
ECHO Found Windows NT 4
REM Or what ever command you want to run.
GOTO END
:WIN9X
ECHO Found Windows 9x
REM Or what ever command you want to run.
GOTO END
:END
[ 22 May 2002, 21:01: Message edited by: NTDOC ]