Rob van der Woude's Scripting Pages

VBScript Scripting Techniques > Network > WOL

Wake-up On Lan (WOL)

 

UltraWOL by UltraJones Software
VBScript Code:
Dim objWOL

Set objWOL = CreateObject( "UltraWOL.ctlUltraWOL" )

objWOL.BroadcastAddr = "192.168.0.255"
' The MAC address of the computer to be woken
objWOL.MACAddr = "AA-BB-CC-DD-EE-FF"
' The local computer's IP address
objWOL.LocalIP = "192.168.0.4"
objWOL.WakeUp
Requirements:
Windows version: any
Network: TCP/IP
Client software: UltraWOL by UltraJones Software
Script Engine: any
Summarized: Should work in any Windows version, as long as UltraWOL is installed on the "calling" machine.
Requires WOL to be enabled on the "called" machine.
 
[Back to the top of this page]

Related Stuff:


page last modified: 2016-09-19; loaded in 0.0058 seconds