mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-06-30 12:41:46 +02:00
Rename to Scripts/wake-up.ps1
This commit is contained in:
@ -85,7 +85,7 @@ Mega Collection of PowerShell Scripts
|
|||||||
| [remove-print-jobs.ps1](Scripts/remove-print-jobs.ps1) | Removes all jobs from all printers. [Read more...](Docs/remove-print-jobs.md) |
|
| [remove-print-jobs.ps1](Scripts/remove-print-jobs.ps1) | Removes all jobs from all printers. [Read more...](Docs/remove-print-jobs.md) |
|
||||||
| [restart-network-adapters.ps1](Scripts/restart-network-adapters.ps1) | Restarts all local network adapters. [Read more...](Docs/restart-network-adapters.md)|
|
| [restart-network-adapters.ps1](Scripts/restart-network-adapters.ps1) | Restarts all local network adapters. [Read more...](Docs/restart-network-adapters.md)|
|
||||||
| [upgrade-ubuntu.ps1](Scripts/upgrade-ubuntu.ps1) | Upgrades Ubuntu Linux to the latest (LTS) release. [Read more...](Docs/upgrade-ubuntu.md) |
|
| [upgrade-ubuntu.ps1](Scripts/upgrade-ubuntu.ps1) | Upgrades Ubuntu Linux to the latest (LTS) release. [Read more...](Docs/upgrade-ubuntu.md) |
|
||||||
| [wakeup.ps1](Scripts/wakeup.ps1) | Sends a magic packet to a computer to wake him up. [Read more...](Docs/wakeup.md) |
|
| [wake-up.ps1](Scripts/wake-up.ps1) | Wakes up a computer using Wake-on-LAN [Read more...](Docs/wakeup.md) |
|
||||||
|
|
||||||
💻 Scripts for the Desktop
|
💻 Scripts for the Desktop
|
||||||
---------------------------
|
---------------------------
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Sends a magic packet to a computer to wake him up
|
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 Wake-On-LAN).
|
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).
|
||||||
.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
|
||||||
@ -10,7 +10,7 @@
|
|||||||
.PARAMETER Port
|
.PARAMETER Port
|
||||||
Specifies the UDP port (9 by default)
|
Specifies the UDP port (9 by default)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./wakeup 11:22:33:44:55:66 192.168.100.100
|
PS> ./wake-up.ps1 11:22:33:44:55:66 192.168.100.100
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
@ -32,14 +32,14 @@ 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. 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 host's 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
|
||||||
|
|
||||||
"✔️ sent magic packet $MACaddress to IP $IPaddress port $Port (twice)"
|
"✔️ sent magic packet $MACaddress to IP $IPaddress on port $Port (twice)"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
Reference in New Issue
Block a user