home *** CD-ROM | disk | FTP | other *** search
/ Phoenix CD 2.0 / Phoenix_CD.cdr / 01e / local10.zip / LOCAL.DOC next >
Text File  |  1988-01-05  |  3KB  |  133 lines

  1.  
  2.  
  3.  
  4.  
  5.        ┌───────────────────────────┐
  6.        │ LOCAL - WatchDog Monitor  │
  7.        └───────────────────────────┘
  8.  
  9.        Author: Jonathan Gillies, SysOp CentraLink (602) 254-9031
  10.  
  11.        This is FREEWARE!  Take it!
  12.  
  13.        ------------------------------------------------------------
  14.  
  15.        DESCRIPTION:
  16.  
  17.            Most DOOR programs nowadays have communications monitors
  18.        build-in.  Therefore, they claim you need not run WatchDog.
  19.  
  20.            I have had several DOOR programs 'Hang' when a caller
  21.        hangs up.  My system locks up, and other users cannot gain
  22.        access.  This is why I do not trust most DOOR programs.
  23.  
  24.            The problem with WatchDog comes into play when you want
  25.        to run the DOOR in local mode.  If a carrier is not present
  26.        then your system reboots.  No carrier is present in local
  27.        operation.  WatchDog will reboot you machine!
  28.  
  29.            Local makes it very easy to run Watchdog during remote
  30.        operation only.  Why take a chance?
  31.  
  32.  
  33.        Here is a sample DOOR batch file:
  34.  
  35.          ECHO OFF
  36.          C:
  37.          CD \PCB\DOORS\GAME1
  38.          GAME1 GAME1.CFG
  39.          CD \PCB
  40.          ECHO ON
  41.          BOARD
  42.  
  43.        Using this batch file, you assume the GAME1 program will
  44.        monitor the carrier and return to PCBoard if carrier is lost.
  45.  
  46.        Change the batch file to look like this:
  47.  
  48.          ECHO OFF
  49.          LOCAL PCBOARD.SYS                           <-- New line
  50.          IF EXIST $REMOTE$.SYS THEN WATCHDG1 ON      <-- New line
  51.          CD \PCB\DOORS\GAME1
  52.          GAME1 GAME1.CFG
  53.          CD \PCB
  54.          IF EXIST $REMOTE$.SYS THEN WATCHDG1 OFF     <-- New line
  55.          ECHO OFF
  56.          BOARD
  57.  
  58.        Running WatchDog insures that the System will re-boot if
  59.        carrier is lost.
  60.  
  61.        Don't take a chance with flaky DOOR programs!  Use Local!
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.        OPERATION:
  72.  
  73.            Local only requires one parameter, the path name of the
  74.        PCBOARD.SYS file.  If you run Local in the \PCB directory
  75.        then you only need name the  PCBOARD.SYS  file as a
  76.        parameter.  You can include the full path name if desired.
  77.  
  78.  
  79.        Included in this Archive:
  80.  
  81.  
  82.          LOCAL.EXE       <-- The executable file
  83.          LOCAL.DOC       <-- This doc file
  84.          WATCHDOG.ARC    <-- The WatchDog archive, incase you don't
  85.                              have it!
  86.          SAMPLE          <-- A sample shell DOOR batch file
  87.  
  88.  
  89.  
  90.  
  91.        This program is fully supported by:
  92.  
  93.                  CentraLink  BBS, Phoenix AZ, (602) 254-9031
  94.                  ASU Underground, Phoenix AZ, (602) 967-0498
  95.  
  96.  
  97.        Have fun, Jonathan Gillies (01/01/88)
  98.  
  99.  
  100.        ... End of Documentation ...
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.