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 >
DOS Batch File  |  1991-04-30  |  1KB  |  39 lines

  1. @echo off
  2. cls
  3. echo            ┌──────────────────────────────────────────────────┐
  4. echo            │ EGA-Puzzle & EGA/CGA-Moving Puzzle  Installation │
  5. echo            │  Copyright 1990/91 by Frank Horn & Lars Schenk   │
  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\PUZZLE
  27. echo:
  28. echo     * Erzeugen des Unterverzeichnisses
  29. md %1\PUZZLE > nul
  30. echo     * Installation der Programme 
  31. copy *.* %1\PUZZLE\*.* > nul
  32. CD %1\PUZZLE
  33. X-PUZZLE
  34. echo:
  35. echo     * Starten Sie "EGA-PUZZLE" mit............. PUZZLE
  36. echo     * Starten Sie "EGA/CGA Moving Puzzle" mit.. ECMOVE
  37. echo     * Lesen der Anleitungen mit................ LIESDOC
  38. :ende
  39.