home *** CD-ROM | disk | FTP | other *** search
/ Netware Super Library / Netware Super Library.iso / timevent / taskmstr / reboot.tsk < prev    next >
Encoding:
Text File  |  1995-05-07  |  877 b   |  31 lines

  1. // This task will Broadcast warnings about the server coming down
  2. // prior to bringing the server down and rebooting it.  It is
  3. // useful for periodic recollection of server memory pools
  4. // towards maximizing server resources and efficiency.
  5. // NOTE: This .TSK file assumes that the server automatically
  6. //       loads NetWare upon reboot.
  7. //       (i.e., the AUTOEXEC.BAT runs SERVER.EXE).
  8.  
  9. SEND "Server coming down in 1 minute...  Save your work then logout!"
  10. WAIT 30
  11.  
  12. SEND "Server coming down in 30 seconds...  Last chance to save work!"
  13. WAIT 15
  14.  
  15. SEND "Server coming down in 15 seconds...  Logout now!
  16. WAIT 10
  17.  
  18. SEND "Server coming down...  Save work and logout quick!"
  19. WAIT 5
  20.  
  21.  
  22. // Remove DOS to force the server to reboot upon EXIT.
  23. REMOVE DOS
  24.  
  25. // DOWN the server.
  26. DOWN
  27.  
  28.  
  29. // EXIT to DOS (forces the server to reboot since DOS is removed).
  30. EXIT
  31.