🌐
Microsoft Store
apps.microsoft.com › detail › 9n8xnp90kv5n
Simple Wake-on-LAN - Free download and install on Windows | Microsoft Store
Simple Wake-on-LAN allows you to quickly send magic packet wake-up requests to your Ethernet-connected devices, and can also store and manage your devices hardware and network information so that you can send wake-up requests in the future without ...
People also ask

What is a Wake-on-LAN magic packet?
A Wake-on-LAN magic packet is a byte array consisting of six bytes of 0xFF followed by sixteen repetitions of a target device’s MAC address. When broadcast on a local network, it triggers a compatible network interface to power on the device.
🌐
pdq.com
pdq.com › blog › wake-on-lan-wol-magic-packet-powershell
How to send a Wake-on-LAN magic packet with PowerShell | PDQ
How do you send a Wake-on-LAN magic packet with PowerShell?
You can send a Wake-on-LAN magic packet with PowerShell by creating the required byte array from the target MAC address and broadcasting it over UDP using the System.Net.Sockets.UdpClient class.
🌐
pdq.com
pdq.com › blog › wake-on-lan-wol-magic-packet-powershell
How to send a Wake-on-LAN magic packet with PowerShell | PDQ
Can Wake-on-LAN work across networks or subnets?
Wake-on-LAN magic packets do not traverse subnets by default. To use Wake-on-LAN across networks, you can run the PowerShell script on a remote computer that shares the same local network as the target device.
🌐
pdq.com
pdq.com › blog › wake-on-lan-wol-magic-packet-powershell
How to send a Wake-on-LAN magic packet with PowerShell | PDQ
🌐
Adremsoft
adremsoft.com › netcrunch.tools › tool › wake-on-lan
Free Wake On LAN Tool for Windows | NetCrunch Tools
It's a compact, focused tool designed to do one job reliably, with no extra setup or configuration. Just launch and wake. Download · Sends Wake-on-LAN packets to power on remote devices · Requires only the MAC address of the target system · No installation, config, or scripting needed ·
🌐
Home Assistant
home-assistant.io › integrations › wake on lan
Wake on LAN - Home Assistant
July 1, 2026 - From the list, select Wake on LAN. Follow the instructions on screen to complete the setup. ... The MAC address to send the wake-up command to. For example, 00:01:02:03:04:05. ... The SecureOn password to append to the magic packet.
🌐
GitHub
gist.github.com › 2425073
Command to send wake on lan packets · GitHub
Command to send wake on lan packets. GitHub Gist: instantly share code, notes, and snippets.
🌐
SmallNetBuilder
smallnetbuilder.com › home › wake up your lan!
Wake Up Your LAN! - SmallNetBuilder
October 21, 2022 - Simply typing mc-wol [target computer MAC address] will send the magic packet over the LAN. For example, to wake up a PC on a LAN with a MAC address of 00:1C:23:01:02:2D, you would type mc-wol 00:1C:23:01:02:2D from the command line (CLI).
🌐
Microsoft Store
apps.microsoft.com › detail › 9nzxkl4rdltr
WakeOnLan(Magic Packet) - Free download and install on Windows | Microsoft Store
November 13, 2024 - Magic Packet Sending: Wake up devices that are in sleep or powered-off states by sending magic packets (Wake-on-LAN). Tile Wake-Up: Pin the information of devices that need to be awakened as tiles for quick access. Protocol Wake-Up: Support waking devices from other applications via the wol: ...
🌐
PDQ
pdq.com › blog › wake-on-lan-wol-magic-packet-powershell
How to send a Wake-on-LAN magic packet with PowerShell | PDQ
January 20, 2026 - TL;DR: You can send a Wake-on-LAN magic packet with PowerShell by creating a byte array that starts with six 0xFF bytes followed by the target device’s MAC address repeated 16 times, then broadcasting it over UDP.
Find elsewhere
🌐
Microsoft Store
apps.microsoft.com › detail › 9nblggh51pb3
Wake on LAN (Magic Packet) - Free download and install on Windows | Microsoft Store
August 25, 2016 - Wake on LAN is a utility to wake a device (PC, laptop, tablet) which is asleep and supports to be woken by Wake on LAN. Add a configuration by specifying a unique name and mac address and select a picture (which will be used if a live tile is created). Multiple configurations for devices which ...
Top answer
1 of 2
2

I found a simple Powershell script on another question/answer site that works. I made some minor changes (added comment block explaining how to use it, added parameters so the necessary info can be provided up front).

Here it is:

<#
    Send-WOL.ps1
    Sends "magic" Wake on LAN packet to attempt to wake the target computer
    It is necessary to specify another computer on the same subnet as the target since the packet
    is only broadcast to the subnet the target is on
    Parameters: Target (required) : MAC address of target (xx:xx:xx:xx:xx:xx)
                RemoteIP (required): IP address of another computer on the same subnet as target
#>

# Setup params
Param(
    [Parameter(Mandatory=$true)][String]$Target,
    [Parameter(Mandatory=$true)][String]$RemoteIP
)

Write-Verbose -Message "Converting MAC address $($Target) to a byte array" -Verbose
$MacByteArray = $Target -split "[:-]" | ForEach-Object { [Byte] "0x$_"}
[Byte[]] $MagicPacket = (,0xFF * 6) + ($MacByteArray * 16)
Write-Verbose -Message "Broadcasting Wake-on-LAN packet to target." -Verbose
Invoke-Command -ComputerName $RemoteIP -ScriptBlock {
    $UdpClient = New-Object System.Net.Sockets.UdpClient
    $UdpClient.Connect(([System.Net.IPAddress]::Broadcast),7)
    $UdpClient.Send($using:MagicPacket,$using:MagicPacket.Length)
    $UdpClient.Close()
}

2 of 2
1

https://www.gammadyne.com/cmdline.htm#wol works, and it´s "only" 193K (go-wol is around 5MB).
I will put a batch script around it and then I´m done.
A deep link into the router setup would be smaller, but I guess that the AVM software does not allow that.

Only wish remaining is to hibernate the machine via Magic Packet, but my NIC is probably too old for that. I think I will use PuTTY for that.

Thanks everyone for digging!

🌐
PCMAG
pcmag.com › home › how-to › networking
Want to See a Magic Trick? You Can Turn on Your Computer From Across the House With Wake-on-LAN | PCMag
October 31, 2025 - Stick it in the corner, set it to run with the lid closed and access it with a remote desktop program. Got a NAS device running at all times, or even a Raspberry Pi? SSH into it and use the command line to send that magic packet. As long as the magic packet itself comes from inside the network, Wake-on-LAN should work without too much stress.
🌐
Depicus
depicus.com › wake-on-lan › woli
Wake on Lan Over The Interweb by Depicus
Wake on Lan Magic Packets can be sent over the Internet - why not try waking up one of your machines with our free Wake On Wan Service. Want a quick way to use this page ? Bookmark https://www.depicus.com/wake-on-lan/woli?m=001143BDA600&i=212.159.110.168&s=255.255.255.255&p=4343 will get you straight there without the need to press those pesky send buttons.
🌐
ArchWiki
wiki.archlinux.org › title › Wake-on-LAN
Wake-on-LAN - ArchWiki
June 8, 2026 - It wakes up hardware that is Magic Packet compliant. Note: This application will need the port changed to 9 from the default(40000) using the -p argument/flag. https://sourceforge.net/projects/wake-on-lan/ || wol · wol_qt — Qt utility with integrated ARP scan to find MAC addresses and batch sending of Wake-on-LAN packets.
🌐
How-To Geek
howtogeek.com › home › windows › what is wake-on-lan, and how do i enable it?
What Is Wake-on-LAN, and How Do I Enable It?
July 28, 2017 - As long as one of the letters listed is g , you can use magic packets for Wake-on-LAN. To enable this option, use the following command. ... This should take care of it. You can run the command to check and see if it's enabled now. Look for the "Wake on" section. You should see a g instead of a d now. To send out Wake-on-LAN requests, you have a cornucopia of options available.
🌐
Google Play
play.google.com › store › apps › details
Wake On Lan - Apps on Google Play
Network/WiFi - This is so that the app can actually send the magic packets to wake up your devices. It is also used in the network search screen and for pinging devices to see if they are online. Supported Languages --------------------------------- English Italian - Davide Salvatore Vietnamese - Altra Nine Dutch - Ackuna website Russian - Павел Монахов German - sendyourmessageto & ngdeinhardt (Don't know their real names) Spanish - Martín Sánchez Rastrilla, Álvaro Sillero Sánchez and others!
Rating: 4.3 ​ - ​ 5.84K votes
🌐
SysAdminSage
sysadminsage.com › home › blog › how to send wake on lan packets: a complete guide
How to Send Wake on LAN Packets: A Complete Guide - SysAdminSage
June 7, 2026 - Learn how to send Wake on LAN packets to boot your PC remotely. Step-by-step guide on BIOS setup, software tools, and sending packets over the internet.
🌐
Wikipedia
en.wikipedia.org › wiki › Wake-on-LAN
Wake-on-LAN - Wikipedia
January 16, 2026 - The Apple Remote Desktop client management system can be used to send Wake-on-LAN packets, but there are also freeware and shareware macOS applications available.
🌐
Apreltech
apreltech.com › Blog › Wake_on_lan_Sniffer
Wake-on-LAN Packet sniffer - AprelTech
Wake-on-LAN Packet sniffer download link: wolsniffer.zip ... A free Wake-On-LAN tool.