2021-04-21 19:53:52 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
wakeup.ps1 [<MAC-address>] [<IP-address>]
|
|
|
|
|
.DESCRIPTION
|
2021-09-25 19:43:22 +02:00
|
|
|
|
Sends a magic packet to a computer to wake him up (requires Wake-On-LAN)
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-25 19:43:22 +02:00
|
|
|
|
PS> ./wakeup 11:22:33:44:55:66 192.168.100.100
|
2021-08-29 17:50:03 +02:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz · License: CC0
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2020-12-29 15:14:21 +01:00
|
|
|
|
#>
|
2020-11-06 15:30:14 +01:00
|
|
|
|
|
2021-07-15 15:51:22 +02:00
|
|
|
|
param([string]$MACaddress = "", [string]$IPaddress = "", [int]$Port=9)
|
2021-04-16 20:01:38 +02:00
|
|
|
|
|
2021-02-01 08:02:39 +01:00
|
|
|
|
function Send-WOL { param([string]$mac, [string]$ip="255.255.255.255", [int]$port=9)
|
|
|
|
|
$broadcast = [Net.IPAddress]::Parse($ip)
|
2020-11-06 15:30:14 +01:00
|
|
|
|
|
2021-02-01 08:02:39 +01:00
|
|
|
|
$mac=(($mac.replace(":","")).replace("-","")).replace(".","")
|
|
|
|
|
$target=0,2,4,6,8,10 | % {[convert]::ToByte($mac.substring($_,2),16)}
|
|
|
|
|
$packet = (,[byte]255 * 6) + ($target * 16)
|
2020-11-06 15:30:14 +01:00
|
|
|
|
|
2021-02-01 08:02:39 +01:00
|
|
|
|
$UDPclient = new-Object System.Net.Sockets.UdpClient
|
|
|
|
|
$UDPclient.Connect($broadcast,$port)
|
|
|
|
|
[void]$UDPclient.Send($packet, 102)
|
2020-11-06 15:30:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
2021-08-19 17:12:34 +02:00
|
|
|
|
if ($MACaddress -eq "" ) { $MACaddress = read-host "Enter the host's MAC address (e.g. 00:11:22:33:44:55)" }
|
|
|
|
|
if ($IPaddress -eq "" ) { $IPaddress = read-host "Enter the host's IP address or subnet address (e.g. 255.255.255.255)" }
|
2021-07-15 15:51:22 +02:00
|
|
|
|
|
2021-04-16 20:01:38 +02:00
|
|
|
|
Send-WOL $MACaddress $IPaddress $Port
|
2021-02-02 07:27:38 +01:00
|
|
|
|
start-sleep -milliseconds 100
|
2021-04-16 20:01:38 +02:00
|
|
|
|
Send-WOL $MACaddress $IPaddress $Port
|
2021-02-02 07:27:38 +01:00
|
|
|
|
|
2021-08-19 17:12:34 +02:00
|
|
|
|
"✔️ sent magic packet $MACaddress to IP $IPaddress port $Port (twice)"
|
2021-02-01 08:02:39 +01:00
|
|
|
|
exit 0
|
2020-12-09 10:30:55 +01:00
|
|
|
|
} catch {
|
2021-09-16 20:19:10 +02:00
|
|
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
2020-12-09 10:30:55 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|