Need Software/hardware that schedules shutdown if server/room overheats.

gersson

Limp Gawd
Joined
Mar 6, 2006
Messages
481
Its warm here in FL -- If the AC dies on us during midnight, we could fry our servers.
Anyone have any experience with scheduling a windows shutdown in the event that, for example, the room gets to 90*F?
We use a temperature probe from Ravica that works to tell temp and humidity but we need to monitor our email to know when something is wrong.

Something that isn't $$$$ would be great!
Thanks!
 
Quick and Dirty way:

1st setup a mail account just for temp notifications. Then write yourself a VB.NET app that checks that account. Have it setup so that if it sees an email in the box it A) downloads it and deletes it from the server and B) shutsdown the server.

For simplicity you can have it launch an external command shell and issue the sutdown command.

Here is simple command line code to schedule a shutdown:

at 01:00 shutdown /s /d u:6:12

This will schedule a shutdown at 1:00AM in the morning. It also specifies that it was an unexpected shutdown as a result of Power Failure: Environment

For more details check "shutdown /help"

*note: obviously you should make the vb program put in the correct time using the system time + like 5 minutes.
 
Back
Top