/////////////////////////////////////////////////////////////////// // // This task will Broadcast warnings about the server coming down // prior to bringing the server down and rebooting it. It is // useful for periodic recollection of server memory pools // towards maximizing server resources and efficiency. // NOTE: This .TSK file assumes that the server automatically // loads NetWare upon reboot. // (i.e., the AUTOEXEC.BAT runs SERVER.EXE). // /////////////////////////////////////////////////////////////////// SEND "Server coming down in 1 minute... Save your work then logout!" WAIT 30 SEND "Server coming down in 30 seconds... Last chance to save work!" WAIT 15 SEND "Server coming down in 15 seconds... Logout now! WAIT 10 SEND "Server coming down... Save work and logout quick!" WAIT 5 // Remove DOS to force the server to reboot upon EXIT. REMOVE DOS // Clear the Server screen before issuing the DOWN command CLS // DOWN the Server (closing any open files without being prompted) SHUTDOWN // EXIT to DOS (forces the server to reboot since DOS is removed). EXIT