mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-21 15:33:15 +01:00
85 lines
2.8 KiB
Markdown
85 lines
2.8 KiB
Markdown
The *ping-local-devices.ps1* Script
|
|
===========================
|
|
|
|
This PowerShell script pings devices in the local network and lists which one are up.
|
|
|
|
Parameters
|
|
----------
|
|
```powershell
|
|
/home/markus/Repos/PowerShell/scripts/ping-local-devices.ps1 [[-timeout] <Int32>] [<CommonParameters>]
|
|
|
|
-timeout <Int32>
|
|
|
|
Required? false
|
|
Position? 1
|
|
Default value 600
|
|
Accept pipeline input? false
|
|
Accept wildcard characters? false
|
|
|
|
[<CommonParameters>]
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
```
|
|
|
|
Example
|
|
-------
|
|
```powershell
|
|
PS> ./ping-local-devices.ps1
|
|
✅ Up: epson raspi tux
|
|
|
|
```
|
|
|
|
Notes
|
|
-----
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
Related Links
|
|
-------------
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
Script Content
|
|
--------------
|
|
```powershell
|
|
<#
|
|
.SYNOPSIS
|
|
Pings local devices
|
|
.DESCRIPTION
|
|
This PowerShell script pings devices in the local network and lists which one are up.
|
|
.EXAMPLE
|
|
PS> ./ping-local-devices.ps1
|
|
✅ Up: epson raspi tux
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
param([int]$timeout = 600) # ms ping timeout
|
|
|
|
|
|
try {
|
|
$names = @('accesspoint','AD','AP','amnesiac','archlinux','auriga','berlin','boston','brother','canon','castor','cisco','echodot','epson','epson2815','fedora','fireball','firewall','fritz.box','fritz.nas','fritz.powerline','fritz.repeater','gassensor','gateway','hippo','heizung','hodor','homemanager','io','iphone','jarvis','jenkins','LA','laptop','linux','jupiter','mars','mercury','miami','mobile','none','none-1','none-2','NY','o2.lte','octo','office','officepc','paris','PI','pixel-6a','PC','pluto','printer','proxy','R2D2','raspberry','raspi','rocket','rome','router','sentinel','server','shelly','shelly1','smartphone','smartwatch','soundbar','speedport.ip','sunnyboy','surface','switch','tablet','tau','tigercat','tolino','tux','TV','ubuntu','vega','venus','xrx','zeus') # sorted alphabetically
|
|
$queue = [System.Collections.Queue]::new()
|
|
foreach($name in $names) { $ping = [System.Net.Networkinformation.Ping]::new()
|
|
$queue.Enqueue( @{Host=$name;Ping=$ping;Async=$ping.SendPingAsync($name,$timeout)} )
|
|
}
|
|
[string]$up = ""
|
|
Write-Host "✅ Local devices: " -noNewline
|
|
while($queue.Count -gt 0) { $obj = $queue.Dequeue()
|
|
try { if ($obj.Async.Wait($timeout)) {
|
|
if ($obj.Async.Result.Status -ne "TimedOut") { Write-Host "$($obj.Host) " -noNewline }
|
|
continue
|
|
}
|
|
} catch { continue }
|
|
$queue.Enqueue($obj)
|
|
}
|
|
Write-Host ""
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|
|
```
|
|
|
|
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:59)*
|