home *** CD-ROM | disk | FTP | other *** search
/ New Horizons Shareware Collection / HORIZONS1.BIN / QS102.ZIP / QS.BAT < prev    next >
DOS Batch File  |  1994-09-06  |  1KB  |  36 lines

  1. @ECHO OFF
  2.  
  3. REM  ======================================================================
  4. REM  ==  The NODEID environment variable specifies the node number that  ==
  5. REM  ==  the door will be running on.                                    ==
  6. REM  ======================================================================
  7. REM  ==  PC Board SysOps, add the NODEID environment variable to your    ==
  8. REM  ==  BOARD.BAT files before running the PC Board executable, just    ==
  9. REM  ==  make sure the NODEID is the right one for each node.  =)        ==
  10. REM  ======================================================================
  11. REM  ==  WildCat SysOps can change the NODEID to WCNODEID.               ==
  12. REM  ======================================================================
  13.  
  14. REM  ======================================================================
  15. REM  ==  The following specify a non-standard IRQ or base address.       ==
  16. REM  ==  Setting them to 0 specifies default.  Use a $ to indicate a     ==
  17. REM  ==  hexadecimal value, ie: SET BASEID=$3F8                          ==
  18. REM  ======================================================================
  19.  
  20. SET IRQID=0
  21. SET BASEID=0
  22.  
  23. C:
  24. CD\BBS\DOORS\BBSDD
  25. QS C:\BBS\WORK\NODE%NODEID%
  26.  
  27. IF EXIST QSBBSDD.%NODEID% GOTO RUNBBSDD
  28. GOTO END
  29.  
  30. :RUNBBSDD
  31. BBSDD C:\BBS\WORK\NODE%NODEID% QSBBSDD.%NODEID%
  32. DEL QSBBSDD.%NODEID%
  33. DEL QS%NODEID%.BBS
  34.  
  35. :END
  36.