home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem install.bat - MAPIT shareware installation utility.
- rem
- rem usage: install (Assumes from drive A:)
- rem or
- rem install X:
- rem
- cls
- echo MAPIT Shareware Installation Utility
- echo .
- echo MAPIT is a graphics notepad enabling you to investigate, analyze,
- echo organize, record, track, reproduce, and communicate your graphical
- echo and textual data and concepts in pictures as well as words. A
- echo powerful reference tool, MAPIT is a wealth of information and just
- echo plain fun to use.
- echo .
- echo This install program will copy MAPIT to your CURRENT DRIVE and DIRECTORY
- echo unless you Control-C out now. You may want to create the temporary
- echo directory MAPIT to hold the data.
- echo .
- echo mkdir MAPIT
- echo cd MAPIT
- echo A:install (If your installation drive is A:)
- echo or
- echo X:install X: (if your installation drive is X:)
- echo .
- echo Please note: MAPIT requires a 386SX-class computer with 512K memory,
- echo an EGA or VGA display, and a MOUSE.
- echo .
- if %1x == x goto INSTALL_A
- echo on
- pause Place MAPIT disk 1 into drive %1
- @echo off
- copy %1*.* >nul
- installx %1
- rem Shouldn't get to this point.
- goto FINI
- rem
- :INSTALL_A
- echo on
- pause Place MAPIT disk 1 into drive A:
- @echo off
- copy A:*.* >nul
- installx A:
- rem
- :FINI
-