home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / calculat / mx_203.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-01-01  |  1KB  |  45 lines

  1. echo off
  2. rem - INSTALL.BAT - used to copy the MX.EXE file to another drive.
  3. cls
  4. echo  
  5. echo            METRIC-X  Version 2.03  -  INSTALLATION BATCH PROGRAM
  6. echo       ================================================================
  7. echo  
  8. if '%1'=='' goto NO_DRIVE
  9. echo         Ready to begin Installation to Drive %1
  10. echo  
  11. echo           ( Ctrl-C will ABORT Installation )
  12. echo  
  13. pause
  14. cls
  15. echo  
  16. echo            METRIC-X  Version 2.03  -  INSTALLATION BATCH PROGRAM
  17. echo       ================================================================
  18. echo  
  19. echo         * Copying the MX.EXE file to Drive %1
  20. echo  
  21. copy MX.EXE %1
  22. echo  
  23. echo         Installation Complete.  Change to Drive %1
  24. echo  
  25. echo         While in Drive %1 type:  MX   (to Start METRIC-X)
  26. echo  
  27. pause
  28. goto END
  29. :NO_DRIVE
  30. echo  
  31. echo          You must specify the destination Drive where you want
  32. echo          to install the METRIC-X executable file:  MX.EXE
  33. echo  
  34. echo          To do this, type INSTALL followed by a space and then
  35. echo          the desired Disk Drive Letter Designation (C, D, etc.)
  36. echo          followed by a colon (:).  Example:     INSTALL C:
  37. echo   
  38. echo          You may also add a Sub-Directory after the Drive Letter
  39. echo          and colon (:), as in this Example:     INSTALL C:\UTILS
  40. echo  
  41. echo  
  42. pause
  43. :END
  44. cls
  45.