mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 22:38:34 +02:00
Improve wakeup.ps1
This commit is contained in:
parent
f3a23fd987
commit
e5c42d366e
@ -27,14 +27,14 @@ function Send-WOL { param([string]$mac, [string]$ip="255.255.255.255", [int]$por
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if ($MACaddress -eq "" ) { $MACaddress = read-host "Enter the MAC address (e.g. 00:11:22:33:44:55)" }
|
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 IP address or subnet address (e.g. 255.255.255.255)" }
|
if ($IPaddress -eq "" ) { $IPaddress = read-host "Enter the host's IP address or subnet address (e.g. 255.255.255.255)" }
|
||||||
|
|
||||||
Send-WOL $MACaddress $IPaddress $Port
|
Send-WOL $MACaddress $IPaddress $Port
|
||||||
start-sleep -milliseconds 100
|
start-sleep -milliseconds 100
|
||||||
Send-WOL $MACaddress $IPaddress $Port
|
Send-WOL $MACaddress $IPaddress $Port
|
||||||
|
|
||||||
write-host -foregroundColor green "✔️ magic packet $MACaddress sent twice to IP $IPaddress port $Port"
|
"✔️ sent magic packet $MACaddress to IP $IPaddress port $Port (twice)"
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user