Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Wake On Lan

Status
Not open for further replies.

pancake

Programmer
Aug 21, 2001
88
GB
Does anyone know of a FREE way to shut down and start up using WOL for a group of PCs running XP, such as Wake on LAN manager Pro ?

We are a school and have a budget of 0 but would find this util very useful, as we manually switch off at the end of every day at the moment.

Thanks in Advance.
 
In case nobody else answers with a solution, here is a cheap option: at you can schedule the pc's to startup and shutdown. The drawback is, as far as I can tell is that is the only way you can turn on/off the PC.
 
I'm not too sure about shutting down, but for starting up I use a free utility called wol.exe and a batch file. Download wol.exe from
Create a text file called "macs.txt" and include a list of MAC addresses for each machine, like:
000f2234e819
000f2234e81a
000f2234e81b


Create a batch file called wake.bat with the following:

Code:
@echo off
for /f %%I in (macs.txt) do (
  wol.exe %%I
)

-Jeff
 
I wanted to emphasize that your current method of shutting down the computer at the end of the day would prevent them from a WOL event succeeding.

Sleep is preferred, Hibernate often proves difficult depending on BIOS issues.

But a complete shutdown state as you described in the original post is not WOL recoverable.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top