home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- if '%1'=='' goto errorexit
- if '%2'=='' goto errorexit
- if not '%3'=='' goto cont
- :errorexit
- @ECHO Syntax: INSTALL s: d: \DIRECTORY
- @ECHO Where \DIRECTORY is the destination directory to install the files.
- @ECHO And s: is the source disk where INSTALL.BAT and GEN7??14.EXE reside.
- @ECHO d: is the destination disk where the files should be installed.
- goto batchexit
- :cont
- if not exist %2%3\nul goto nodir
- @ECHO The specified destination directory already exists.
- @ECHO Some of the current contents may be replaced, type Cntl-C to abort.
- PAUSE
- goto unzipit
- :nodir
- @ECHO Directory %2%3 does not exist.
- @ECHO This directory will be created, type Cntl-C to abort.
- PAUSE
- MKDIR %2%3
- :unzipit
- @ECHO Copying the GEN7 System Files and Old Testament Data Files.
- COPY /V %1GEN7G14.EXE %2%3
- @ECHO Please insert the disk with the Old Testament Data (GEN7OD14.EXE).
- PAUSE
- COPY /V %1GEN7OD14.EXE %2%3
- %2
- CD %3
- @ECHO Unpacking the files please wait...
- GEN7G14
- GEN7OD14
- @ECHO Done unpacking.
- :batchexit
- @ECHO To run the desktop type the following command:
- @ECHO G7
- @ECHO This runs the GEN7 Desktop with the Bible Study Program (Old Testament).
- @ECHO Make sure CONFIG.SYS has FILES=30 or greater in it.
- @ECHO These programs are copyrighted by:
- @ECHO Synergistic Consultants, Incorporated.
- @ECHO Post Office Box 18888
- @ECHO Huntsville, AL 35804-8888
- @ECHO 1-800-828-8384
- @ECHO Compuserve ID: 71232, 257
- @ECHO Press Cntl-C to avoid running the desktop.
- PAUSE
- CALL G7
-
-