home *** CD-ROM | disk | FTP | other *** search
/ PC Joker 1997 August / PC_Joker_08-97.iso / DOSINST.BAT < prev    next >
DOS Batch File  |  1997-06-10  |  738b  |  46 lines

  1. @echo off
  2. @echo. -----------------------------------------------
  3. @echo. Geben Sie bitte den Buchstaben des CD-Laufwerks
  4. @echo. an, in dem sich die PC-Joker CD befindet!
  5. @echo. 
  6. @echo. Abbruch mit STRG+C
  7. @echo. 
  8. echo.
  9. echo Laufwerk D, E, F oder G?
  10. echo.
  11. choice /c:DEFG Bitte CD-Laufwerksbuchstaben eingeben!
  12. if errorlevel 4 goto instG
  13. if errorlevel 3 goto instF
  14. if errorlevel 2 goto instE
  15. if errorlevel 1 goto instD
  16.  
  17. :instG
  18. set DDrive=G:
  19. goto start
  20.  
  21. :instF
  22. set DDrive=F:
  23. goto start
  24.  
  25. :instE
  26. set DDrive=E:
  27. goto start
  28.  
  29. :instD
  30. set DDrive=D:
  31. goto start
  32.  
  33. :start
  34. %SDrive%
  35. cd %SDrive%\text
  36. dosinst /B
  37. goto Ende
  38.  
  39. :Ende
  40. @echo. 
  41. @echo. Installer beendet
  42. @echo. 
  43. @echo. Viel Spass beim Spiel!
  44. @echo.
  45. pause
  46.