PowerShell/scripts/wake-up-host.ps1

51 lines
1.9 KiB
PowerShell
Raw Permalink Normal View History

2024-10-01 15:24:16 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2023-02-09 09:20:43 +01:00
Wakes up a computer using Wake-on-LAN
2021-07-13 21:10:02 +02:00
.DESCRIPTION
2023-06-19 10:21:57 +02:00
This PowerShell script sends a magic UDP packet to a computer to wake him up (requires the target computer to have Wake-on-LAN activated).
2023-11-13 16:33:57 +01:00
.PARAMETER macAddr
2021-10-07 11:22:28 +02:00
Specifies the host's MAC address (e.g. 11:22:33:44:55:66)
2023-11-13 16:33:57 +01:00
.PARAMETER ipAddr
2023-05-08 09:14:55 +02:00
Specifies the host's IP address or subnet address (e.g. 192.168.0.255)
2023-11-13 16:33:57 +01:00
.PARAMETER udpPort
2021-10-07 11:22:28 +02:00
Specifies the UDP port (9 by default)
2023-11-13 16:33:57 +01:00
.PARAMETER numTimes
Specifies # of times to send the packet (3 by default)
2021-07-13 21:10:02 +02:00
.EXAMPLE
PS> ./wake-up-host.ps1 11:22:33:44:55:66 192.168.100.100
2024-09-28 14:54:21 +02:00
Magic packet sent to IP 192.168.100.100, UDP port 9, 3x - wait a minute until the computer fully boots up.
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-30 10:49:30 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-11-06 15:30:14 +01:00
2023-11-13 16:33:57 +01:00
param([string]$macAddr = "", [string]$ipAddr = "", [int]$udpPort = 9, [int]$numTimes = 3)
2021-04-16 20:01:38 +02:00
2023-11-13 16:33:57 +01:00
function Send-WOL { param([string]$macAddr, [string]$ipAddr, [int]$udpPort)
$broadcastAddr = [Net.IPAddress]::Parse($ipAddr)
2020-11-06 15:30:14 +01:00
2023-11-13 16:33:57 +01:00
$macAddr = (($macAddr.replace(":","")).replace("-","")).replace(".","")
$target = 0,2,4,6,8,10 | % {[convert]::ToByte($macAddr.substring($_,2),16)}
2021-02-01 08:02:39 +01:00
$packet = (,[byte]255 * 6) + ($target * 16)
2020-11-06 15:30:14 +01:00
2023-11-13 16:33:57 +01:00
$UDPclient = New-Object System.Net.Sockets.UdpClient
$UDPclient.Connect($broadcastAddr, $udpPort)
2021-02-01 08:02:39 +01:00
[void]$UDPclient.Send($packet, 102)
2020-11-06 15:30:14 +01:00
}
try {
2023-11-13 16:33:57 +01:00
if ($macAddr -eq "" ) { $macAddr = Read-Host "Enter the host's MAC address, e.g. 11:22:33:44:55:66" }
if ($ipAddr -eq "" ) { $ipAddr = Read-Host "Enter the host's IP or subnet address, e.g. 192.168.0.255" }
2021-07-15 15:51:22 +02:00
2023-11-13 16:33:57 +01:00
for ($i = 0; $i -lt $numTimes; $i++) {
2024-05-18 10:39:11 +02:00
Send-WOL $macAddr.Trim() $ipAddr.Trim() $udpPort
2023-11-13 16:33:57 +01:00
Start-Sleep -milliseconds 100
2023-05-08 09:14:55 +02:00
}
2024-09-28 14:54:21 +02:00
"✅ Magic packet sent to IP $ipAddr, UDP port $udpPort, $($numTimes)x - wait a minute until the computer fully boots up."
2021-09-27 10:09:45 +02:00
exit 0 # success
2020-12-09 10:30:55 +01:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-09 10:30:55 +01:00
exit 1
}