Update wake-up.ps1

This commit is contained in:
Markus Fleschutz 2023-06-19 10:21:57 +02:00
parent fac504c9f3
commit e5b56114f9

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Wakes up a computer using Wake-on-LAN Wakes up a computer using Wake-on-LAN
.DESCRIPTION .DESCRIPTION
This PowerShell script sends a magic UDP packet twice to a computer to wake him up (requires the target computer to have Wake-on-LAN activated). 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).
.PARAMETER MACaddress .PARAMETER MACaddress
Specifies the host's MAC address (e.g. 11:22:33:44:55:66) Specifies the host's MAC address (e.g. 11:22:33:44:55:66)
.PARAMETER IPaddress .PARAMETER IPaddress
@ -34,15 +34,16 @@ function Send-WOL { param([string]$mac, [string]$ip, [int]$port)
} }
try { try {
if ($MACaddress -eq "" ) { $MACaddress = Read-Host "Enter the host's MAC address (e.g. 11:22:33:44:55:66)" } if ($MACaddress -eq "" ) { $MACaddress = Read-Host "Enter the host's MAC address, e.g. 11:22:33:44:55:66" }
if ($IPaddress -eq "" ) { $IPaddress = Read-Host "Enter the host's IP address or subnet address (e.g. 192.168.0.255)" } if ($IPaddress -eq "" ) { $IPaddress = Read-Host "Enter the host's IP or subnet address, e.g. 192.168.0.255" }
Send-WOL $MACaddress $IPaddress $Port Send-WOL $MACaddress $IPaddress $Port
for ($i = 0; $i -lt $NumRetries; $i++) { for ($i = 0; $i -lt $NumRetries; $i++) {
Start-Sleep -milliseconds 100 Start-Sleep -milliseconds 100
Send-WOL $MACaddress $IPaddress $Port Send-WOL $MACaddress $IPaddress $Port
} }
"✔️ sent magic packet $MACaddress to IP $IPaddress on port $Port ($NumRetries retries)" "✔️ sent magic packet with MAC $MACaddress to IP $IPaddress on port $Port as wakeup call ($($NumRetries + 1) times)"
" (Hint: wait a minute until the computer fully boots up)"
exit 0 # success exit 0 # success
} catch { } catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"