home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / UTILITY / FILOSLUB.ARJ / FILO_MSG.BAT next >
DOS Batch File  |  1991-04-01  |  3KB  |  85 lines

  1. cls
  2. @echo off
  3. echo  
  4. echo            ╔═══════════════════════════════╗
  5. echo            ║          SubLstU              ║
  6. echo            ║    A WWIV SubList Utility     ║
  7. echo            ╠═══════════════════════════════╣
  8. echo            ║  This program is made to be   ║
  9. echo            ║  unzipped the WWIV directory  ║
  10. echo            ║  where your BBS.EXE is.       ║
  11. echo            ║  If you are not there, you    ║
  12. echo            ║  will be given a chance to    ║
  13. echo            ║  abort this installation.     ║
  14. echo            ╚═══════════════════════════════╝
  15. echo  
  16. echo  
  17. pause
  18. cls
  19. echo          ┌────────────────────────────────────────────────────┐
  20. echo          │    At Present, this installation                   │
  21. echo          │    consists of three files:                        │
  22. echo          │      o  REPLY.COM   --Assembly language program    │
  23. echo          │                       returning keypress to the    │
  24. echo          │                       batch file                   │
  25. echo          │      o  FILO_MSB.BAT--What you are reading now.    │
  26. echo          │      o  Sublst      --A zipped file containing     │
  27. echo          │                       the setup batch and the      │
  28. echo          │                       program.                     │
  29. echo          │                                                    │
  30. echo          │                                                    │
  31. echo          │   If you select 1 below, the files will be         │
  32. echo          │      deleted and you can unzip FILOSLUB.ZIP        │
  33. echo          │      in your WWIV directory.                       │
  34. echo          │   If you select 2 for GO, the program will be      │
  35. echo          │      installed after asking you for some           │
  36. echo          │      configuration information.                    │
  37. echo          └────────────────────────────────────────────────────┘
  38. echo
  39. pause
  40. cls
  41. echo  
  42. :MENU
  43. cls
  44. echo          ┌─────────────────────────────┐
  45. echo          │  Enter your selection Now   │
  46. echo          │                             │
  47. echo          │  1 =  Abort Installation    │
  48. echo          │  2 =  Go ahead and Install  │
  49. echo          └─────────────────────────────┘
  50. echo  
  51. reply
  52.   if errorlevel 50 goto GO
  53.   if errorlevel 49 goto QUIT
  54.   if errorlevel 1 goto MENU
  55. :GO
  56.   rename subslst subslst.zip
  57.   pkunzip subslst.zip
  58.   command /c setmeup.bat
  59.   del subslst.zip
  60.   del setmeup.bat
  61.   del reply.com
  62.   goto GOODBYE
  63. :QUIT
  64.   cls
  65.   echo            Be sure to unzip FILOSLUB.ZIP in the
  66.   echo            directory with your BBS.EXE.
  67.   echo  
  68.   echo One moment...deleting unnecessary files now....
  69.   del subslst
  70.   del reply.com
  71.   cls
  72.   echo The only unnecessary file now is this one.  After the
  73.   echo GOODBYE message, please delete FILO_MSG.BAT.
  74.   echo  
  75.   echo
  76.   goto GOODBYE
  77. :GOODBYE
  78.   cls
  79.   echo                 Thanks again !
  80.   echo                    GOODBYE
  81.   echo  
  82. cls
  83. exit
  84.  
  85.