home *** CD-ROM | disk | FTP | other *** search
- echo off
- rem - INSTALL.BAT - used to copy the MX.EXE file to another drive.
- cls
- echo
- echo METRIC-X Version 2.02 - INSTALLATION BATCH PROGRAM
- echo ================================================================
- echo
- if '%1'=='' goto NO_DRIVE
- echo Ready to begin Installation to Drive %1
- echo
- echo ( Ctrl-C will ABORT Installation )
- echo
- pause
- cls
- echo
- echo METRIC-X Version 2.02 - INSTALLATION BATCH PROGRAM
- echo ================================================================
- echo
- echo * Copying the MX.EXE file to Drive %1
- echo
- copy MX.EXE %1
- echo
- echo Installation Complete. Change to Drive %1
- echo
- echo While in Drive %1 type: MX (to Start METRIC-X)
- echo
- pause
- goto END
- :NO_DRIVE
- echo
- echo You must specify the destination Drive where you want
- echo to install the METRIC-X executable file: MX.EXE
- echo
- echo To do this, type INSTALL followed by a space and then
- echo the desired Disk Drive Letter Designation (C, D, etc.)
- echo followed by a colon (:). Example: INSTALL C:
- echo
- echo You may also add a Sub-Directory after the Drive Letter
- echo and colon (:), as in this Example: INSTALL C:\UTILS
- echo
- echo
- pause
- :END
- cls
-