PowerShell/Scripts/wakeup.ps1

41 lines
1.3 KiB
PowerShell
Raw Normal View History

2021-04-07 11:53:57 +02:00
#!/usr/bin/pwsh
2020-12-29 15:14:21 +01:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX wakeup.ps1 [<MAC-address>] [<IP-address>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION sends a magic packet to the given computer to wake him up
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-11-06 15:30:14 +01:00
2021-02-18 20:17:55 +01:00
param($MACaddress = "", $IPaddress = "")
2020-11-06 15:30:14 +01: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-02-01 08:02:39 +01:00
if ($MACaddress -eq "" ) {
2021-02-02 07:27:38 +01:00
$MACaddress = read-host "Enter the MAC address (e.g. 00:11:22:33:44:55)"
}
if ($IPaddress -eq "" ) {
$IPaddress = read-host "Enter the IP address or subnet address (e.g. 255.255.255.255)"
2021-02-01 08:02:39 +01:00
}
2021-02-02 07:27:38 +01:00
Send-WOL $MACaddress $IPaddress
start-sleep -milliseconds 100
Send-WOL $MACaddress $IPaddress
2021-02-10 19:25:48 +01:00
write-host -foregroundColor green "Done - magic packet sent twice to IP $IPaddress (MAC $MACaddress)"
2021-02-01 08:02:39 +01:00
exit 0
2020-12-09 10:30:55 +01:00
} catch {
2021-02-16 10:03:20 +01:00
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-09 10:30:55 +01:00
exit 1
}