home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / EVENTS / MEVENT.ZIP / DO_LD.BAT < prev    next >
DOS Batch File  |  1992-08-22  |  567b  |  26 lines

  1. REM This is an example of a batch file to insure that certain LD boards are
  2. REM called more than once per day if mail is pending.
  3.  
  4. :START
  5.  
  6.   if not exist .\data\S1040.NET goto S1050
  7.   network /N1040 /A1 /P512-631-3062 /S19200
  8.   if errorlevel 1 goto S1050
  9.   if exist .\data\bbslist.51* network3 Y
  10.   network1
  11.   network2
  12.   network1
  13.  
  14. :S1050
  15.  
  16.    if not exist .\data\S1050.NET goto QUIT
  17.    network /N1050 /A1 /Pxxx-xxx-xxxx /S19200
  18.    if errorlevel 1 goto QUIT
  19.    if exist .\data\bbslist.51* network3 Y
  20.    network1
  21.    network2
  22.    network1
  23.  
  24. :QUIT
  25.  
  26.