home *** CD-ROM | disk | FTP | other *** search
/ The Education Master / The_Education_Master_Advantage_Plus_Dist._1992.iso / install.bat < prev   
DOS Batch File  |  1992-03-14  |  1KB  |  50 lines

  1. @echo off
  2. cls
  3.  
  4. If %1! == ! goto message
  5.  
  6. echo.
  7. echo.
  8.  
  9. echo Copyright (R) 1992  Advantage Plus Distributing Inc.
  10. echo.
  11. echo This batch file will install the catalog program to a hard disk.
  12. echo It will first create the sub-directory then copy the files.
  13. echo The files will be copied to %1
  14. echo.
  15. echo Press any key to continue or...
  16. echo press CTRL-C to cancel.
  17. pause >nul
  18. echo.
  19.  
  20. cd\contents
  21. md %1
  22. copy *.* %1
  23. cd\
  24.  
  25. cls
  26. echo.
  27. echo To start the program from a hard drive change to the sub-directory
  28. echo where the catalog program is installed then use the START.BAT file. 
  29. echo Execute START.BAT passing the location of your CD-ROM drive.
  30. echo Example:  START D  (This would copy files from the D: drive.)
  31. echo.
  32. echo.
  33.  
  34. goto end
  35.  
  36.  
  37. :message
  38. cls
  39.  
  40. echo.
  41. echo.
  42. echo Copyright (R) 1992  Advantage Plus Distributing Inc.
  43. echo.
  44. echo You must enter a drive letter and sub-directory name to install the
  45. echo catalog program files.  Example: INSTALL C:\MAST
  46. echo.
  47. echo.
  48.  
  49. :end
  50.