PowerShell/scripts/ping-hosts.ps1

52 lines
1.8 KiB
PowerShell
Raw Normal View History

2023-11-08 13:44:17 +01:00
<#
.SYNOPSIS
2023-11-09 07:25:36 +01:00
Pings local hosts
2023-11-08 13:44:17 +01:00
.DESCRIPTION
2023-11-08 13:55:50 +01:00
This PowerShell script pings well-known hostnames in the local network and lists which one up.
2023-11-08 13:44:17 +01:00
.EXAMPLE
PS> ./check-hosts.ps1
2023-11-08 13:55:50 +01:00
Up are: Hippo Jenkins01 Jenkins02 Rocket Vega
2023-11-08 13:44:17 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
2023-11-09 07:25:36 +01:00
[string]$hosts = "Amnesiac,ArchLinux,Berlin,Boston,Brother,Canon,Castor,Cisco,EchoDot,Epson,Fedora,Fireball,Firewall,fritz.box,Gateway,Hippo,HomeManager,Io,iPhone,Jarvis,Jenkins01,Jenkins02,LA,Laptop,Jupiter,Mars,Mercury,Miami,Mobile,NY,OctoPi,Paris,Pluto,Printer,Proxy,R2D2,Raspberry,Rocket,Rome,Router,Server,Shelly1,SmartPhone,SmartWatch,Soundbar,Sunnyboy,Switch,Tablet,Tolino,TV,Ubuntu,Vega,Venus,XRX,Zeus" # sorted alphabetically
2023-11-08 13:55:50 +01:00
[int]$timeout = 600 # milliseconds
2023-11-08 13:44:17 +01:00
$hostsArray = $hosts.Split(",")
$count = $hostsArray.Count
Write-Progress "Sending pings to $count local hosts..."
$queue = [System.Collections.Queue]::new()
foreach($hostname in $hostsArray) {
$ping = [System.Net.Networkinformation.Ping]::new()
2023-11-08 13:55:50 +01:00
$object = @{ Host = $hostname; Ping = $ping; Async = $ping.SendPingAsync($hostname, $timeout) }
2023-11-08 13:44:17 +01:00
$queue.Enqueue($object)
}
[string]$result = ""
while ($queue.Count -gt 0) {
$object = $queue.Dequeue()
try {
2023-11-08 13:55:50 +01:00
if ($object.Async.Wait($timeout) -eq $true) {
2023-11-08 13:44:17 +01:00
if ($object.Async.Result.Status -ne "TimedOut") {
$result += "$($object.Host) "
}
continue
}
} catch {
if ($object.Async.IsCompleted -eq $true) {
continue
}
}
$queue.Enqueue($object)
}
Write-Progress -completed "Done."
Write-Host "✅ Up are: $result"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}