home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 6 / 1995-05_Disc_6.iso / data / install.bat < prev    next >
DOS Batch File  |  1995-03-13  |  1KB  |  59 lines

  1. @echo off
  2. cls
  3. echo Please press the letter corresponding to
  4. echo your hard drive (C, D, E, F, and G are
  5. echo valid drive choices)
  6. choice /c:cdefg /n
  7. if errorlevel 5 goto inst5
  8. if errorlevel 4 goto inst4
  9. if errorlevel 3 goto inst3
  10. if errorlevel 2 goto inst2
  11. if errorlevel 1 goto inst1
  12.  
  13. :inst1
  14. CD\
  15. INSTALL C:\VIRTUOSO
  16. @echo To play, switch to the \VIRTUOSO 
  17. @echo directory on your hard drive and
  18. @echo type VIRTUOSO, also, type SETUP
  19. @echo to configure sound options.
  20. goto end
  21.  
  22. :inst2
  23. CD\
  24. INSTALL D:\VIRTUOSO
  25. @echo To play, switch to the \VIRTUOSO 
  26. @echo directory on your hard drive and
  27. @echo type VIRTUOSO, also, type SETUP
  28. @echo to configure sound options.
  29. goto end
  30.  
  31. :inst3
  32. CD\
  33. INSTALL E:\VIRTUOSO
  34. @echo To play, switch to the \VIRTUOSO 
  35. @echo directory on your hard drive and
  36. @echo type VIRTUOSO, also, type SETUP
  37. @echo to configure sound options.
  38. goto end
  39.  
  40. :inst4
  41. CD\
  42. INSTALL F:\VIRTUOSO
  43. @echo To play, switch to the \VIRTUOSO 
  44. @echo directory on your hard drive and
  45. @echo type VIRTUOSO, also, type SETUP
  46. @echo to configure sound options.
  47. goto end
  48.  
  49. :inst5
  50. CD\
  51. INSTALL G:\VIRTUOSO
  52. @echo To play, switch to the \VIRTUOSO 
  53. @echo directory on your hard drive and
  54. @echo type VIRTUOSO, also, type SETUP
  55. @echo to configure sound options.
  56. goto end
  57.  
  58. :end
  59.