home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Direkt: Spezial 1
/
CDD_SPIELE_.ISO
/
wingames
/
winpuz
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1994-03-15
|
1KB
|
44 lines
echo off
cls
echo ┌──────────────────────────────────────────────────┐
echo │ Window Puzzle Festplatten-Installation │
echo │ Copyright 1991 by Schenk & Horn - SHAREWARE │
echo └──────────────────────────────────────────────────┘
echo:
echo:
IF %1a == a goto Error
IF %1 == c: goto weiter
IF %1 == C: goto weiter
IF %1 == d: goto weiter
IF %1 == D: goto weiter
IF %1 == e: goto weiter
IF %1 == E: goto weiter
:Error
echo Bitte starten Sie die Installation mit folgenden Parametern:
echo INSTALL d:
echo:
echo d: bezeichnet das logische Laufwerk (z.B. c:)
echo:
goto ende
:weiter
echo:
echo Window Puzzle benötigt ca. 400 kB auf Ihrer Festplatte!
echo Wenn Sie nicht mehr so viel frei haben, drücken Sie bitte jetzt
echo CTRL-C, um die Installation abzubrechen.
pause
echo:
echo Die Installation erfolgt in dem Verzeichnis %1\WINPUZZ
echo:
echo * Erzeugen des Unterverzeichnisses
md %1\WINPUZZ > nul
echo * Installation
copy x-WINPUZZ.exe %1\WINPUZZ\*.* > nul
%1:
cd %1\WINPUZZ
x-WINPUZZ
del x-WINPUZZ.exe
echo Installation beendet.
:ende