Hello everybody !
You want a source code for Wake On LAN without copyright ? It's here !
ENJOY !
$IPAddress = "192.168.1.255"; This is the broadcast address !
$MACAddress = "000D8787E226"
UDPStartUp()
$connexion = UDPOpen($IPAddress, 7)
$res = UDPSend($connexion, GenerateMagicPacket($MACAddress))
MsgBox(0, "", $res)
UDPCloseSocket($connexion)
UDPShutdown()
; ===================================================================
; Functions
; =======================================