home *** CD-ROM | disk | FTP | other *** search
/ The Best of the Best / _.img / 02004 / install.bat < prev    next >
DOS Batch File  |  1992-03-26  |  812b  |  53 lines

  1. @echo off
  2. cls
  3. echo Syntax ist Install (von:) (nach:) z.B. install a: c:
  4. echo Ein Verzeichnis mit Namen "KALKULUS" wird erstellt.
  5. echo In diesem befindet sich nach erfolgreicher Installation das Programm.
  6. pause
  7. if %1 == a: goto weiter
  8. if %1 == b: goto weiter
  9. goto richtig
  10. :weiter
  11. if %2 == c: goto weiter2
  12. if %2 == d: goto weiter2
  13. if %2 == e: goto weiter2
  14. if %2 == f: goto weiter2
  15. goto richtig
  16. :weiter2
  17. %2
  18. cd \
  19. md kalkulus
  20. cd kalkulus
  21. %1
  22. echo Kopiere die Dateien
  23. copy *.* %2
  24. %2
  25. del install.bat
  26. kalk
  27. del kalk.exe
  28. echo Installation beendet
  29. type info.txt | more
  30. echo Starten des Programms mit "KALKULUS"
  31. echo Programmstart erfolgt nach Tastendruck.
  32. pause
  33. cls
  34. kalkulus
  35. goto stop
  36. :richtig
  37. echo Syntax ist Install (von:) (nach:) z.B. install a: c:
  38. :stop
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.