home *** CD-ROM | disk | FTP | other *** search
/ The CIA World Factbook 1989 / CIA_The_World_Factbook_1989.ISO / install.bat < prev    next >
DOS Batch File  |  1989-02-19  |  2KB  |  46 lines

  1. echo off
  2. cls
  3. if %1x == x goto ERROR
  4. if %2x == x goto ERROR
  5.  
  6. echo *********************** NOTICE ****************************
  7. echo ***********************************************************
  8. echo *  "FILES" must be set to at least 15 in your CONFIG.SYS  *
  9. echo *             See Users Guide for details                 *
  10. echo ***********************************************************
  11.  
  12. echo Creating directories on disk %1
  13. mkdir %1\CIA
  14.  
  15. echo Copying CIA software to disk %1
  16. copy %2*.* %1\CIA /v
  17. %1
  18. CD \CIA
  19. REN T1.DAT TW$ERR.DAT
  20. REN T2.DAT TW$MSG.DAT
  21. REN T3.OVL TW$RUN.OVL
  22.  
  23. echo Customizing TextWare for current system.
  24. %1
  25. cd \CIA
  26. \CIA\CTLMOD \CIA\CIA E: %2
  27. del ctlmod.exe
  28.  
  29. echo ***********************************************************
  30. echo ***********************************************************
  31. echo * Install complete.                                       *
  32. echo ***********************************************************
  33. echo ***********************************************************
  34. goto DONE
  35.  
  36. :ERROR
  37. echo ************ ERROR *************** ERROR *************** ERROR ************
  38. echo ***************************************************************************
  39. echo * The 'install' drive and 'CD' drive must be specified i.e. INSTALL C: J: *
  40. echo *     where C: is the disk drive which you wish to install TextWare       *
  41. echo *       and J: is the CD ROM disk drive on your system.                   *
  42. echo ***************************************************************************
  43. echo ************ ERROR *************** ERROR *************** ERROR ************
  44.  
  45. :DONE
  46.