Bryce
I have tested this and I want to implement it, but I was wondering, is there a way to check first to see if the user already has the files on their computer and where up to date? so I wouldn't have to recopy them every time they logged in and still be able to replace them if I update newer files on the server.
@Echo Off
CLS
ECHO Verifying / Updating Script Software Installation, Please Wait...IF "%OS%" == "Windows_NT" GOTO WinNT
%windir%\command\XCOPY %0\..\KIX32.EXE %WINDIR%\ /D /H /I /R /V > NUL
%windir%\command\XCOPY %0\..\KX16.DLL %WINDIR%\ /D /H /I /R /V > NUL
%windir%\command\XCOPY %0\..\KX32.DLL %WINDIR%\ /D /H /I /R /V > NUL
%windir%\command\XCOPY %0\..\KX95.DLL %WINDIR%\ /D /H /I /R /V > NUL
GOTO RunScript
:WinNT
XCOPY %0\..\KIX32.EXE %WINDIR%\ /D /H /I /R /V > NUL
GOTO RunScript
:RunScript
ECHO Loading Logon Script, Please Wait...
%WINDIR%\KIX32.EXE %0\..\logon.KIX
:End