home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / bbsfiles / gsbbs302.arj / INSTALL.BAT < prev    next >
DOS Batch File  |  1991-01-21  |  1KB  |  23 lines

  1. echo off
  2. if @%1 == @ goto instruct
  3. echo ╔════════════════════════════════════════════════════════════════════╗
  4. echo ║ This file will create the BBSINFO, ARCTMP, DLDS, and OUTBOUND.*    ║
  5. echo ║ directories relative to the current directory, and will unpack the ║
  6. echo ║ BBSINFO data files into that directory. Be sure you are in the BBS ║
  7. echo ║ directory before you run this. After it completes, you may delete  ║
  8. echo ║ BBSINFO.ZIP and INSTALL.BAT.                                       ║
  9. echo ╚════════════════════════════════════════════════════════════════════╝
  10. pause
  11. md arctmp
  12. md outbound
  13. for %%w in (1 2 3 4 5) do mkdir outbound.00%%w
  14. rd outbound.00%1
  15. pkunzip -d bbsinfo
  16. goto bye
  17. :instruct
  18. echo ╔═════════════════════════════════════════════════════════════════╗
  19. echo ║ You must specify your zone; ie. INSTALL 1 if you are in zone 1. ║
  20. echo ║   (North America = Zone 1. If elsewhere, ask a FidoNet Node.)   ║
  21. echo ╚═════════════════════════════════════════════════════════════════╝
  22. :bye
  23.