Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
602 B

@rem echo off
set SRC=
for /d /r %tmp% %%i in (*.*) do if exist %%~fi\newsall.inf set SRC=%%~fi
if "%SRC%" == "" goto TryTemp
goto noargs
:TryTemp
for /d /r %temp% %%i in (*.*) do if exist %%~fi\newsall.inf set SRC=%%~fi
if "%SRC%" == "" goto TryCwd
goto noargs
:TryCwd
set SRC=%1%
if NOT exist %SRC%\newsall.inf goto Error
goto noargs
:Error
echo .
echo Webhits setup error:
echo You must specify the directory where installing from
echo .
echo EXAMPLE:
echo %0 %SRC% (default)
echo .
pause
goto end
:noargs
%SystemRoot%\system32\setup.exe /f /i %SRC%\newsall.inf /s %SRC%
:end
set SRC=