home *** CD-ROM | disk | FTP | other *** search
/ Big Box 200 / BOX200.BIN / install1.bat < prev    next >
Encoding:
DOS Batch File  |  1995-07-17  |  2.5 KB  |  127 lines

  1. @ECHO OFF
  2.  
  3.         SET DRV=DISK1 
  4. :start
  5.  
  6. if "%1"=="" goto ende
  7.  
  8. if "%1"=="1" goto SUPERFLY 
  9. if "%1"=="2" goto TAIPAN
  10. if "%1"=="3" goto TEXTRIS
  11. if "%1"=="4" goto VECTOR5
  12. if "%1"=="5" goto VEGAS 
  13. if "%1"=="6" goto VLEAP1
  14. if "%1"=="7" goto WARHEAVE
  15. if "%1"=="8" goto WILLY
  16. if "%1"=="9" goto WILSTAR
  17. if "%1"=="10" goto WORDGRA
  18. if "%1"=="11" goto WORDWHIZ
  19. if "%1"=="12" goto WUERFEL
  20. if "%1"=="30" goto GOTCHA
  21. goto ende
  22.  
  23.         :SUPERFLY
  24.         SET PRG=_FLY.exe
  25.         SET DIR=SUPERFLY
  26.         goto install
  27.  
  28.         :TAIPAN
  29.         SET PRG=_TAIPAN.exe
  30.         SET DIR=TAIPAN
  31.         goto install
  32.  
  33.         :TEXTRIS
  34.         SET PRG=_TEXTRIS.exe
  35.         SET DIR=TEXTRIS
  36.         goto install
  37.  
  38.         :VECTOR5
  39.         SET PRG=_PLAYIT.exe
  40.         SET DIR=VECTOR5
  41.         goto install
  42.  
  43.         :VEGAS
  44.         SET PRG=_VEGAS.exe
  45.         SET DIR=VEGAS
  46.         goto install
  47.  
  48.         :VLEAP1
  49.         SET PRG=_VLEAPER.exe
  50.         SET DIR=VLEAP1
  51.         goto install
  52.  
  53.         :WARHEAVE
  54.         SET PRG=_WAR.exe
  55.         SET DIR=WARHEAVE
  56.         goto install
  57.  
  58.         :WILLY
  59.         SET PRG=_WILLY.exe
  60.         SET DIR=WILLY
  61.         goto install
  62.  
  63.         :WILSTAR
  64.         SET PRG=_SLOTS.exe
  65.         SET DIR=WILSTAR
  66.         goto install
  67.  
  68.         :WORDGRA
  69.         SET PRG=_WG.exe
  70.         SET DIR=WORDGRA
  71.         goto install
  72.  
  73.         :WORDWHIZ
  74.         SET PRG=_WORDWIZ.exe
  75.         SET DIR=WORDWHIZ
  76.         goto install
  77.  
  78.         :WUERFEL
  79.         SET PRG=_WUERFEL.exe
  80.         SET DIR=WUERFEL
  81.         goto install
  82.  
  83.         :GOTCHA
  84.         SET PRG=_GOTCHA.exe
  85.         SET DIR=GOTCHA
  86.         goto install
  87.  
  88.         goto ende
  89.  
  90. :install 
  91. CLS
  92. ECHO      ┌──────────────────────────────────────────────────────────────────┐
  93. ECHO                        I N S T A L L A T I O N   beginnt                
  94. ECHO             Programm %DIR%                                               
  95. ECHO             Zielverzeichnis C:\%DIR%                                     
  96. ECHO      └──────────────────────────────────────────────────────────────────┘
  97.  
  98.         md C:\%DIR%
  99.         cd %DRV%
  100.         copy %PRG% C:\%DIR% 
  101.         C:\%DIR%\%PRG% C:\%DIR%
  102.         cd ..
  103.         goto ende 
  104.  
  105. :fehler
  106. cls
  107. ECHO      ┌──────────────────────────────────────────────────────────────────┐
  108. ECHO      │                  Bitte Diskette Nr. 1 einlegen                   │
  109. ECHO      └──────────────────────────────────────────────────────────────────┘
  110. pause
  111.  
  112.  
  113.         goto start
  114.  
  115. :ende
  116. exit
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.