home *** CD-ROM | disk | FTP | other *** search
/ Sound Sensations! / sound_sensations.iso / midifile / baldem / install.bat < prev    next >
DOS Batch File  |  1991-03-11  |  3KB  |  118 lines

  1. @ECHO OFF
  2. CLS
  3. BREAK ON
  4. ECHO  
  5. ECHO      ╔══════════════════════════════════════════╗
  6. ECHO      ║   Ballade 2.0 Demo Installation Utility  ║
  7. ECHO      ╚══════════════════════════════════════════╝
  8. ECHO  
  9. ECHO  
  10. ECHO     Do you want to install Ballade 2.0 Demo on your computer now?
  11. ECHO  
  12. ECHO     ENTER: (Yes/No/Quit)
  13. ECHO  
  14.          Response YNQ
  15.          if errorlevel 3 goto QUIT
  16.          if errorlevel 2 goto QUIT
  17.          if errorlevel 1 goto Yes
  18. :yes
  19. cls
  20. ECHO  
  21. ECHO  
  22. ECHO     Install Ballade 2.0 Demo to your Hard Disk or Floppy?
  23. ECHO  
  24. ECHO     ENTER: (H/F/Quit)
  25. ECHO  
  26.          Response HFQ
  27.          if errorlevel 3 goto QUIT
  28.          if errorlevel 2 goto No2
  29.          if errorlevel 1 goto Yes2
  30. :yes2
  31. cls
  32. ECHO  
  33. ECHO  
  34. ECHO     Ballade will create the proper subdirectories as it is
  35. ECHO     unpacked.  Please type which hard disk you wish Ballade to be
  36. ECHO     installed on. C:, D:, or E:?
  37. ECHO  
  38. ECHO     ENTER: (C/D/E/Quit)
  39. ECHO  
  40.          Response CDEQ
  41.          if errorlevel 4 goto Quit
  42.          if errorlevel 3 goto E
  43.          if errorlevel 2 goto D
  44.          if errorlevel 1 goto C
  45.  
  46. :C
  47.          MD C:\BALLADE
  48.          DEMOFILE C:\BALLADE
  49.      GOTO DONE
  50. :D
  51.          MD D:\BALLADE
  52.          DEMOFILE D:\BALLADE
  53.          GOTO DONE
  54. :E
  55.          MD E:\BALLADE
  56.          DEMOFILE E:\BALLADE
  57.          GOTO DONE
  58.  
  59. :No2
  60. cls
  61. ECHO  
  62. ECHO     To Install this Ballade Demo on Floppy Disk you *MUST* install
  63. ECHO     it on a 1.2 or 1.44 Meg High Density Floppy.
  64. ECHO     Do you have a high density Disk Drive?
  65. ECHO  
  66. ECHO     ENTER: (Yes/No/Quit)
  67. ECHO  
  68.          Response YNQ
  69.          if errorlevel 3 goto Quit
  70.          if errorlevel 2 goto sorry
  71.          if errorlevel 1 goto continue
  72.  
  73. :continue
  74. cls
  75. ECHO  
  76. ECHO  
  77. ECHO     Which Floppy Disk do you wish Ballade to be installed on?
  78. ECHO     A or B ?
  79. ECHO  
  80. ECHO     ENTER: (A/B/Quit)
  81. ECHO  
  82.          Response ABQ
  83.          if errorlevel 3 goto Quit
  84.          if errorlevel 2 goto B
  85.          if errorlevel 1 goto A
  86.  
  87. :A
  88.   ECHO  
  89.   ECHO   Place a Formatted 1.2 or 1.44 Meg disk in Drive A: and
  90.            pause
  91.          DEMOFILE A:\
  92.          GOTO DONE
  93.  
  94. :B
  95.   ECHO  
  96.   ECHO   Place a Formatted 1.2 or 1.44 Meg disk in Drive B: and
  97.            pause
  98.          DEMOFILE B:\
  99.          GOTO DONE
  100.  
  101. :SORRY
  102. ECHO  
  103. ECHO     Sorry, Ballade 2.0 Demo must be installed on High Density Floppies.
  104.          pause
  105.  
  106. GOTO QUIT
  107.  
  108. :DONE
  109. cls
  110. ECHO  
  111. ECHO  
  112. ECHO     Change to Ballade Directory and type "BALLADE" to start.
  113. ECHO     Enjoy
  114.          pause
  115.  
  116. :QUIT
  117.  CLS
  118.