home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of the Best
/
_.img
/
01126
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1993-08-10
|
465b
|
29 lines
@echo off
if %1+==+ goto hilfe
if %1==? goto hilfe
if %1==h goto hilfe
if %1==/? goto hilfe
if %1==/h goto hilfe
cls
echo INSTALLATION BEGINNT
echo --------------------
echo Quell-Laufwerk: %1
echo Ziel-Laufwerk: %2%3
pause
%2
if not exist %3 md %3
cd %3
copy %1*.* %2
%2
ww
goto ende
:hilfe
echo Installationroutine starten
echo INSTALL [Quell-Laufwerk] [Ziel-Laufwerk] [Ziel-Pfad]
echo z.B. INSTALL A: C: \WW
goto ende
:ende