home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
bbsfiles
/
gsbbs302.arj
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-01-21
|
1KB
|
23 lines
echo off
if @%1 == @ goto instruct
echo ╔════════════════════════════════════════════════════════════════════╗
echo ║ This file will create the BBSINFO, ARCTMP, DLDS, and OUTBOUND.* ║
echo ║ directories relative to the current directory, and will unpack the ║
echo ║ BBSINFO data files into that directory. Be sure you are in the BBS ║
echo ║ directory before you run this. After it completes, you may delete ║
echo ║ BBSINFO.ZIP and INSTALL.BAT. ║
echo ╚════════════════════════════════════════════════════════════════════╝
pause
md arctmp
md outbound
for %%w in (1 2 3 4 5) do mkdir outbound.00%%w
rd outbound.00%1
pkunzip -d bbsinfo
goto bye
:instruct
echo ╔═════════════════════════════════════════════════════════════════╗
echo ║ You must specify your zone; ie. INSTALL 1 if you are in zone 1. ║
echo ║ (North America = Zone 1. If elsewhere, ask a FidoNet Node.) ║
echo ╚═════════════════════════════════════════════════════════════════╝
:bye