home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / UTILITY / FQT80BR.ARJ / READ-NOW.BAT < prev    next >
DOS Batch File  |  1991-02-10  |  3KB  |  80 lines

  1. @echo off
  2. echo  
  3. echo  
  4. echo                            ╔═════════════════╗
  5. echo                            ║      Filo       ║
  6. echo                            ║    Presents     ║
  7. echo                            ║      . . .      ║
  8. echo                            ║  FQUOTE v0.80   ║
  9. echo                            ║      with       ║
  10. echo                            ║   Installation  ║
  11. echo                            ║     Program     ║
  12. echo                            ╚═════════════════╝
  13. echo  
  14. echo  
  15. echo Press any key to continue
  16. REPLY
  17. cls
  18. echo  
  19. echo  
  20. echo  
  21. echo          ╔═════════════════════════════════════════════════╗
  22. echo          ║        At this point the program has 4 files    ║
  23. echo          ║                                                 ║
  24. echo          ║   o    READTHIS.BAT--The file you have just     ║
  25. echo          ║                      run                        ║
  26. echo          ║   o    REPLY.COM   --An assembly language       ║
  27. echo          ║                      that returns an errorlevel ║
  28. echo          ║                      for the key pressed        ║
  29. echo          ║   o    DONT_RUN    --the main program           ║
  30. echo          ║   o    README.1st  --warning that BRUN45 needed ║
  31. echo          ║ = = = = = = = = = = = = = = = = = = = = = = = = ║
  32. echo          ║   These three files MUST be placed in your main ║
  33. echo          ║   bbs directory for this installation to work.  ║
  34. echo          ║   You will be given the opportunity to move the ║
  35. echo          ║   files there in a moment if you choose to      ║
  36. echo          ║   ABORT the installation.  If you are located   ║
  37. echo          ║   in the main directory then select PROCEED as  ║
  38. echo          ║   the appropriate option.                       ║
  39. echo          ╚═════════════════════════════════════════════════╝
  40. echo  
  41. echo Press Any key to continue
  42. REPLY
  43. :MENU1
  44. cls
  45. echo          ╔═════════════════════════════╗
  46. echo          ║  Select one of the options  ║
  47. echo          ║  below by pressing 1 or 2   ║
  48. echo          ╚═════════════════════════════╝
  49. echo  
  50. echo          1.  PROCEED with installation
  51. echo  
  52. echo          2.  ABORT installation
  53. echo  
  54. echo Enter one or two now
  55. :ANSWER
  56.    REPLY
  57.    if errorlevel 51 goto MENU1
  58.    if errorlevel 50 goto QUIT
  59.    if errorlevel 49 goto PROCEED
  60.    if errorlevel 1 goto MENU1
  61. :PROCEED
  62.    rename DONT_RUN FQ_RUN.zip
  63.    pkunzip FQ_run
  64.    command /c readthis
  65.    fqinstal
  66.    command /c 2nd
  67.    cls
  68.    echo                   T H A N K S
  69.    echo  
  70.    echo          H O P E   Y O U   L I K E   T H I S   P R O G R A M
  71.    echo  
  72.    echo                  Filo  1 @5252
  73.    echo  
  74.    del fQ_run.zip
  75.    del fqinstal.exe
  76.    del 2nd.bat
  77.    exit
  78. :QUIT
  79.    exit
  80.