home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
-
- SET DRV=DISK1
- :start
-
- if "%1"=="" goto ende
-
- if "%1"=="1" goto SUPERFLY
- if "%1"=="2" goto TAIPAN
- if "%1"=="3" goto TEXTRIS
- if "%1"=="4" goto VECTOR5
- if "%1"=="5" goto VEGAS
- if "%1"=="6" goto VLEAP1
- if "%1"=="7" goto WARHEAVE
- if "%1"=="8" goto WILLY
- if "%1"=="9" goto WILSTAR
- if "%1"=="10" goto WORDGRA
- if "%1"=="11" goto WORDWHIZ
- if "%1"=="12" goto WUERFEL
- if "%1"=="30" goto GOTCHA
- goto ende
-
- :SUPERFLY
- SET PRG=_FLY.exe
- SET DIR=SUPERFLY
- goto install
-
- :TAIPAN
- SET PRG=_TAIPAN.exe
- SET DIR=TAIPAN
- goto install
-
- :TEXTRIS
- SET PRG=_TEXTRIS.exe
- SET DIR=TEXTRIS
- goto install
-
- :VECTOR5
- SET PRG=_PLAYIT.exe
- SET DIR=VECTOR5
- goto install
-
- :VEGAS
- SET PRG=_VEGAS.exe
- SET DIR=VEGAS
- goto install
-
- :VLEAP1
- SET PRG=_VLEAPER.exe
- SET DIR=VLEAP1
- goto install
-
- :WARHEAVE
- SET PRG=_WAR.exe
- SET DIR=WARHEAVE
- goto install
-
- :WILLY
- SET PRG=_WILLY.exe
- SET DIR=WILLY
- goto install
-
- :WILSTAR
- SET PRG=_SLOTS.exe
- SET DIR=WILSTAR
- goto install
-
- :WORDGRA
- SET PRG=_WG.exe
- SET DIR=WORDGRA
- goto install
-
- :WORDWHIZ
- SET PRG=_WORDWIZ.exe
- SET DIR=WORDWHIZ
- goto install
-
- :WUERFEL
- SET PRG=_WUERFEL.exe
- SET DIR=WUERFEL
- goto install
-
- :GOTCHA
- SET PRG=_GOTCHA.exe
- SET DIR=GOTCHA
- goto install
-
- goto ende
-
- :install
- CLS
- ECHO ┌──────────────────────────────────────────────────────────────────┐
- ECHO I N S T A L L A T I O N beginnt
- ECHO Programm %DIR%
- ECHO Zielverzeichnis C:\%DIR%
- ECHO └──────────────────────────────────────────────────────────────────┘
-
- md C:\%DIR%
- cd %DRV%
- copy %PRG% C:\%DIR%
- C:\%DIR%\%PRG% C:\%DIR%
- cd ..
- goto ende
-
- :fehler
- cls
- ECHO ┌──────────────────────────────────────────────────────────────────┐
- ECHO │ Bitte Diskette Nr. 1 einlegen │
- ECHO └──────────────────────────────────────────────────────────────────┘
- pause
-
-
- goto start
-
- :ende
- exit
-
-
-
-
-
-
-
-
-
-
-