home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 18 / CD_ASCQ_18_111294_W.iso / dos / prg / bas / ruckus / install.bat < prev    next >
DOS Batch File  |  1994-10-20  |  578b  |  24 lines

  1. @echo off
  2. REM use /B for mono video systems, as in INSTALL /b
  3. cls
  4. echo RUCKUS 1.1 Install
  5. echo.
  6. echo To install RUCKUS, the library files must first be extracted and built.
  7. echo Two install runs are made: one each for RUCKUS-DAC and RUCKUS-MIDI.
  8. echo.
  9. pause
  10. instruck RUCKDAC %1
  11. if errorlevel==1 goto nogo
  12. instruck RUCKMIDI %1
  13. if errorlevel==1 goto nogo
  14. echo.
  15. echo Installation was a success. Refer to the documentation under Appendix C.
  16. echo for further installation procedures.
  17. echo.
  18. goto endit
  19. :nogo
  20. echo.
  21. echo Installation failed to complete. 
  22. :endit
  23.  
  24.