home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Best of German Only 1
/
romside_best_of_german_only_1.iso
/
spiele
/
dos
/
puzzle
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1991-04-30
|
1KB
|
39 lines
@echo off
cls
echo ┌──────────────────────────────────────────────────┐
echo │ EGA-Puzzle & EGA/CGA-Moving Puzzle Installation │
echo │ Copyright 1990/91 by Frank Horn & Lars Schenk │
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 Die Installation erfolgt in dem Verzeichnis %1\PUZZLE
echo:
echo * Erzeugen des Unterverzeichnisses
md %1\PUZZLE > nul
echo * Installation der Programme
copy *.* %1\PUZZLE\*.* > nul
CD %1\PUZZLE
X-PUZZLE
echo:
echo * Starten Sie "EGA-PUZZLE" mit............. PUZZLE
echo * Starten Sie "EGA/CGA Moving Puzzle" mit.. ECMOVE
echo * Lesen der Anleitungen mit................ LIESDOC
:ende