mirror of https://github.com/lianthony/NT4.0
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.
18 lines
389 B
18 lines
389 B
@echo off
|
|
if exist %1%\setupie.inf goto doit
|
|
if %1. == . set SRC=%temp%
|
|
if exist %SRC%\setupie.inf goto noargs
|
|
echo .
|
|
echo IExplore setup error:
|
|
echo You must specify the directory where installing from
|
|
echo .
|
|
echo EXAMPLE:
|
|
echo %0 %SRC% (default)
|
|
echo .
|
|
goto end
|
|
:doit
|
|
set SRC=%1
|
|
:noargs
|
|
start /wait %SystemRoot%\system32\setup.exe /v /i %SRC%\setupie.inf /s %SRC%\
|
|
set SRC=
|
|
:end
|