From 6d46821001a44f5cec8e3c6684d83a378776e511 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Thu, 9 Nov 2023 07:25:36 +0100 Subject: [PATCH] Update ping-hosts.ps1 --- scripts/ping-hosts.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ping-hosts.ps1 b/scripts/ping-hosts.ps1 index 257852cd..02fc8e16 100644 --- a/scripts/ping-hosts.ps1 +++ b/scripts/ping-hosts.ps1 @@ -1,6 +1,6 @@ <# .SYNOPSIS - Pings the local hosts + Pings local hosts .DESCRIPTION This PowerShell script pings well-known hostnames in the local network and lists which one up. .EXAMPLE @@ -13,7 +13,7 @@ #> try { - [string]$hosts = "Amnesiac,ArchLinux,Berlin,Boston,Brother,Canon,Castor,Cisco,Epson,Fedora,Fireball,Firewall,fritz.box,Gateway,Hippo,Io,Jarvis,Jenkins01,Jenkins02,LA,Laptop,Jupiter,Mars,Mercury,Miami,Mobile,NY,OctoPi,Paris,Pluto,Printer,Proxy,R2D2,Raspberry,Rocket,Rome,Router,Server,SmartPhone,SmartWatch,Sunnyboy,Tablet,Ubuntu,Vega,Venus,XRX,Zeus" # sorted alphabetically + [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 [int]$timeout = 600 # milliseconds $hostsArray = $hosts.Split(",") $count = $hostsArray.Count