home *** CD-ROM | disk | FTP | other *** search
/ Sound Sensations! / sound_sensations.iso / voice / ringbck2 / bbs1.bat < prev    next >
Encoding:
DOS Batch File  |  1990-09-28  |  888 b   |  44 lines

  1. echo off
  2. cls
  3.  
  4. rem Smaple start-up batch file to invoke Ring*Back in Ring-Back mode.
  5.  
  6. rem In this example the batch files "Setclock.Bat" and "Backup.Bat"
  7. rem are dummy batch files illustrating how to use event scheduling
  8. rem to preform other system tasks.
  9.  
  10. rem The following line may be deleted:
  11. if not exist ringback.exe goto no_find
  12.  
  13. RINGBACK RING-BACK
  14. if errorlevel=255 goto end
  15. if errorlevel=96 goto load
  16. if errorlevel=24 goto load
  17. if errorlevel=12 goto load
  18. if errorlevel=5 setclock.bat
  19. if errorlevel=4 backup.bat
  20. if errorlevel=3 goto load
  21. if errorlevel=2 nite.bat
  22. if errorlevel=1 day.bat
  23. if errorlevel=0 goto local
  24. goto error
  25.  
  26. :load
  27. Loadbbs.Bat
  28.  
  29. :Local
  30. Bbsbatch local
  31.  
  32. :error
  33. echo Something's wrong!
  34. echo Please check system before restarting program ...
  35. goto end
  36.  
  37. :no_find
  38. echo Can not find Ringback.Exe!
  39.  
  40. :end
  41. echo Exiting to DOS ...
  42.  
  43.  
  44.