home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Select: Games 5
/
cd.iso
/
games
/
boulstar
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1994-01-31
|
1KB
|
42 lines
@echo off
cls
echo ┌───────────────────────────────────┐
echo │ BoulderStar Installation │
echo │ Copyright 1992 by Schenk & Horn │
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\BOULSTAR
echo:
echo * Erzeugen des Unterverzeichnisses
md %1\BOULSTAR > nul
echo * Installation der Programme
copy *.* %1\BOULSTAR\*.* > nul
echo * Entpacken
%1
CD %1\BOULSTAR
XBOUL
DEL xboul.exe > nul
echo:
echo * Starten Sie "BoulderStar" mit............ START
echo:
echo * Installation beendet, Viel Spaß!
:ende