home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
New Horizons Shareware Collection
/
HORIZONS1.BIN
/
QS102.ZIP
/
QS.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-09-06
|
1KB
|
36 lines
@ECHO OFF
REM ======================================================================
REM == The NODEID environment variable specifies the node number that ==
REM == the door will be running on. ==
REM ======================================================================
REM == PC Board SysOps, add the NODEID environment variable to your ==
REM == BOARD.BAT files before running the PC Board executable, just ==
REM == make sure the NODEID is the right one for each node. =) ==
REM ======================================================================
REM == WildCat SysOps can change the NODEID to WCNODEID. ==
REM ======================================================================
REM ======================================================================
REM == The following specify a non-standard IRQ or base address. ==
REM == Setting them to 0 specifies default. Use a $ to indicate a ==
REM == hexadecimal value, ie: SET BASEID=$3F8 ==
REM ======================================================================
SET IRQID=0
SET BASEID=0
C:
CD\BBS\DOORS\BBSDD
QS C:\BBS\WORK\NODE%NODEID%
IF EXIST QSBBSDD.%NODEID% GOTO RUNBBSDD
GOTO END
:RUNBBSDD
BBSDD C:\BBS\WORK\NODE%NODEID% QSBBSDD.%NODEID%
DEL QSBBSDD.%NODEID%
DEL QS%NODEID%.BBS
:END