In an effort to reduce my family's consumption on electricity, I would like to automate turning my home server on and off. what's the best approach for this using Windows Home Server 2007? Please list any hardware requirements

link|improve this question

I do not believe a computer on its own can turn itself on after being turned off. What you might be able to do is suspend for that amount of time, the problem of waking it, is stil a problem. – Ramhound Sep 14 '11 at 16:09
feedback

migrated from serverfault.com Sep 14 '11 at 16:07

This question came from our site for system administrators and desktop support professionals.

2 Answers

up vote 3 down vote accepted

Turning the computer on is the job of BIOS, since Windows is not operational, yet.

So, depending on BIOS type, press Del or F2 or whatever the shortcut is to enter the BIOS on startup, go to Power Management and set the Wake on Alarm / Wake up timer to 7 pm everyday, if it is available.

You can schedule the daily shutting down of the server in Task Scheduler. Set to run everyday at the time of your choice (here, 11pm). Choose as executable shutdown.exe /s /f.

/s for shutdown,
/f for force closing of running applications. Unsaved changes would be lost, as usual.

I'd recommend you to test this before putting into "productive" use, especially the turning on part.

link|improve this answer
Thanks Bora. I'll give this a shot. – burnt1ce Sep 15 '11 at 18:23
feedback

A typical home computer is at 300W or less. Are you aware that a 300W device consumes 7.2KWH a day if 100% loaded all day. So about $1.25 of electricity in a whole day. Elaborate efforts to modulate one small server is likely to have a very long ROI.

link|improve this answer
1  
Thank you for your input but i would still like to know how i can automate turning off and on my home server – burnt1ce Sep 14 '11 at 16:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.