home *** CD-ROM | disk | FTP | other *** search
/ Best of German Only 1 / romside_best_of_german_only_1.iso / finanzen / housekee / install.bat < prev    next >
DOS Batch File  |  1993-01-23  |  994b  |  38 lines

  1. @echo off
  2. cls
  3. echo            ┌──────────────────────────────────────────────────┐
  4. echo            │              H O U S E K E E P I N G             │
  5. echo            │         Copyright 1993 by O.Berndt V1.0          │
  6. echo            └──────────────────────────────────────────────────┘
  7. echo:
  8. echo:
  9. IF %1a == a goto Error
  10. IF %1 == c: goto start
  11. IF %1 == C: goto start
  12. IF %1 == d: goto start
  13. IF %1 == D: goto start
  14. IF %1 == e: goto start
  15. IF %1 == E: goto start
  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. :start
  26. echo     Die Installation erfolgt in dem Verzeichnis %1\HAUS
  27. echo:
  28. echo     * Erzeugen des Unterverzeichnisses
  29. md %1\HAUS > nul
  30. echo     * Installation der Programme & Daten
  31. copy *.* %1\HAUS\*.* > nul
  32. del %1\HAUS\install.bat >nul
  33. %1
  34. cd HAUS >nul
  35. echo:
  36. echo     * Die Installation ist abgeschlossen
  37. :ende
  38.