home *** CD-ROM | disk | FTP | other *** search
/ TopWare Tools / TOOLS.iso / tools / top1114 / gepackt.exe / INSTALL.O14 < prev    next >
Encoding:
Text File  |  1993-11-16  |  1.5 KB  |  49 lines

  1. @ECHO OFF
  2. if '%1'=='' goto errorexit
  3. if '%2'=='' goto errorexit
  4. if not '%3'=='' goto cont
  5. :errorexit
  6. @ECHO Syntax: INSTALL s: d: \DIRECTORY
  7. @ECHO   Where \DIRECTORY is the destination directory to install the files.
  8. @ECHO   And s: is the source disk where INSTALL.BAT and GEN7??14.EXE reside.
  9. @ECHO       d: is the destination disk where the files should be installed.
  10. goto batchexit
  11. :cont
  12. if not exist %2%3\nul goto nodir
  13. @ECHO The specified destination directory already exists.
  14. @ECHO Some of the current contents may be replaced, type Cntl-C to abort.
  15. PAUSE
  16. goto unzipit
  17. :nodir
  18. @ECHO Directory %2%3 does not exist.
  19. @ECHO This directory will be created, type Cntl-C to abort.
  20. PAUSE
  21. MKDIR %2%3
  22. :unzipit
  23. @ECHO Copying the GEN7 System Files and Old Testament Data Files.
  24. COPY /V %1GEN7G14.EXE %2%3
  25. @ECHO Please insert the disk with the Old Testament Data (GEN7OD14.EXE).
  26. PAUSE
  27. COPY /V %1GEN7OD14.EXE %2%3
  28. %2
  29. CD %3
  30. @ECHO Unpacking the files please wait...
  31. GEN7G14
  32. GEN7OD14
  33. @ECHO Done unpacking.
  34. :batchexit
  35. @ECHO To run the desktop type the following command:
  36. @ECHO         G7
  37. @ECHO This runs the GEN7 Desktop with the Bible Study Program (Old Testament).
  38. @ECHO Make sure CONFIG.SYS has FILES=30 or greater in it.
  39. @ECHO These programs are copyrighted by:
  40. @ECHO   Synergistic Consultants, Incorporated.
  41. @ECHO   Post Office Box 18888
  42. @ECHO   Huntsville, AL 35804-8888
  43. @ECHO   1-800-828-8384
  44. @ECHO   Compuserve ID: 71232, 257
  45. @ECHO Press Cntl-C to avoid running the desktop.
  46. PAUSE
  47. CALL G7
  48.  
  49.