home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 25 / CD_ASCQ_25_1095.iso / dos / educ / soav9 / install.bat < prev    next >
DOS Batch File  |  1995-03-19  |  882b  |  55 lines

  1. @echo off
  2. if %1x == x goto error
  3. if %2x == x goto error
  4. echo.
  5. echo Installing Algebra programs...
  6. md %2\soa
  7. copy algebra.exe %2\soa
  8. copy readme.txt %2\soa
  9. copy history.txt %2\soa
  10. md %2\Basics
  11. copy gmath.exe %2\basics
  12. copy history.txt %2\basics
  13. md %2\dbase
  14. copy dbase.exe %2\dbase
  15. cd\
  16. %2
  17. cd soa
  18. algebra.exe
  19. del algebra.exe
  20. echo.
  21. echo SOA Installation complete.
  22. echo.
  23. echo Command SOA to get to the MENU.
  24. echo.
  25. pause
  26. echo.
  27. cd\basics
  28. gmath.exe
  29. del gmath.exe
  30. echo.
  31. echo BASIC MATH Installation complete.
  32. echo.
  33. echo Command BASICS to get to the MENU.
  34. echo.
  35. pause
  36. echo.
  37. cd\dbase
  38. dbase.exe
  39. del dbase.exe
  40. echo.
  41. echo DBASE installation complete.
  42. echo.
  43. echo Command DB to run the program.
  44. echo.
  45. pause
  46. echo.
  47. cd\soa
  48. type readme.txt | more
  49. goto exit
  50. :error
  51. echo.
  52. echo Error!  Command Install 'origin drive' space 'destination drive.'
  53. :exit
  54.  
  55.