home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / bbs_mail / gold230.exe / RUNGOLD.BAT < prev   
DOS Batch File  |  1991-04-04  |  2KB  |  71 lines

  1. @ECHO OFF
  2.  
  3. REM ------------------------------------------------------------------
  4. REM        G O L D E D   E X A M P L E   B A T C H   F I L E
  5. REM ------------------------------------------------------------------
  6. REM This batch file gives you a simple skeleton, where you can put
  7. REM your mail scanners, packers and other processing you want done
  8. REM after each GoldED session.
  9. REM ------------------------------------------------------------------
  10.  
  11. :GOLDRUN
  12.     GOLDED.EXE
  13.  
  14. If ErrorLevel 101 Goto ERROR
  15. If ErrorLevel 100 Goto REBUILD
  16. If ErrorLevel 008 Goto ERROR
  17. If ErrorLevel 007 Goto E_N_L
  18. If ErrorLevel 006 Goto E_N__
  19. If ErrorLevel 005 Goto E___L
  20. If ErrorLevel 004 Goto E____
  21. If ErrorLevel 003 Goto __N_L
  22. If ErrorLevel 002 Goto __N__
  23. If ErrorLevel 001 Goto ____L
  24.                   Goto _____
  25.  
  26. :ERROR
  27.     Echo GoldED Error exit!
  28.     Goto END
  29.  
  30. :REBUILD
  31.     Echo ERROR! The QBBS index files needs rebuilding!
  32.     MBUTIL.EXE Index -Recover -Delete
  33.     Goto GOLDRUN
  34.  
  35. :E_N_L
  36.     Echo **** New Echo, Net and Local mail entered!
  37.     Goto END
  38.  
  39. :E_N__
  40.     Echo **** New Echo and Netmail entered!
  41.     Goto END
  42.  
  43. :E___L
  44.     Echo **** New Echo and Local mail entered!
  45.     Goto END
  46.  
  47. :E____
  48.     Echo **** New Echomail entered!
  49.     Goto END
  50.  
  51. :__N_L
  52.     Echo **** New Net and Local mail entered!
  53.     Goto END
  54.  
  55. :__N__
  56.     Echo **** New Netmail entered!
  57.     Goto END
  58.  
  59. :____L
  60.     Echo **** New Local mail entered!
  61.     Goto END
  62.  
  63. :_____
  64.     Echo **** No new mail entered...
  65.     Goto END
  66.  
  67. :END
  68.     REM The End.
  69.  
  70. REM ------------------------------------------------------------------
  71.