home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / SPIELE / BREAK / SOFTBALL / INSTALL.BAT next >
DOS Batch File  |  1993-12-01  |  963b  |  36 lines

  1. @echo off
  2. cls
  3. echo            ┌──────────────────────────────────────────────────┐
  4. echo            │      VGA-Softball Festplatten-Installation       │
  5. echo            │          Programmdiskette (Prüfversion)          │
  6. echo            └──────────────────────────────────────────────────┘
  7. echo:
  8. echo:
  9. IF %1a == a goto Error
  10. IF %1 == c: goto weiter
  11. IF %1 == C: goto weiter
  12. IF %1 == d: goto weiter
  13. IF %1 == D: goto weiter
  14. IF %1 == e: goto weiter
  15. IF %1 == E: goto weiter
  16.  
  17. :Error
  18. echo     Bitte starten Sie die Installation mit folgenden Parametern:
  19. echo     INSTALL d:
  20. echo:
  21. echo     d:       bezeichnet das logische Laufwerk (z.B. c:)
  22. echo:
  23. goto ende
  24.  
  25. :weiter
  26. echo     Die Installation erfolgt in dem Verzeichnis %1\SOFTBALL
  27. echo:
  28. echo     * Erzeugen des Unterverzeichnisses
  29. md %1\SOFTBALL > nul
  30. echo     * Installation der Programme & Daten
  31. copy *.* %1\SOFTBALL\*.* > nul
  32. %1:
  33. cd \SOFTBALL
  34. del %1\SOFTBALL\install.bat >nul
  35. :ende
  36.