From 7e774853fc795d458a0738b00c03ec1adb7073f6 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 4 Dec 2024 11:24:21 +0100 Subject: [PATCH] Updated ping-host.ps1 --- scripts/ping-host.ps1 | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/scripts/ping-host.ps1 b/scripts/ping-host.ps1 index e0373295..dd9d13ec 100755 --- a/scripts/ping-host.ps1 +++ b/scripts/ping-host.ps1 @@ -4,33 +4,33 @@ .DESCRIPTION This PowerShell script pings the given host. .PARAMETER hostname - Specifies the hostname or IP address to ping (windows.com by default) + Specifies the hostname or IP address to ping (x.com by default) .EXAMPLE PS> ./ping-host.ps1 x.com - ✅ x.com is up and running (11ms latency). + ✅ Host 'x.com' is up with 23ms ping latency. .LINK https://github.com/fleschutz/PowerShell .NOTES Author: Markus Fleschutz | License: CC0 #> -param([string]$hostname = "windows.com") +param([string]$hostname = "x.com") function GetPingLatency([string]$hostname) { $hostsArray = $hostname.Split(",") - $tasks = $hostsArray | foreach { (New-Object Net.NetworkInformation.Ping).SendPingAsync($_,1500) } + $tasks = $hostsArray | foreach { (New-Object Net.NetworkInformation.Ping).SendPingAsync($_,3000) } [Threading.Tasks.Task]::WaitAll($tasks) foreach($ping in $tasks.Result) { if ($ping.Status -eq "Success") { return $ping.RoundtripTime } } - return 1500 + return -1 } try { [int]$latency = GetPingLatency($hostname) - if ($latency -eq 1500) { + if ($latency -lt 0) { Write-Host "⚠️ Host '$hostname' doesn't respond - check the connection or maybe the host is down." exit 1 } - Write-Host "✅ $hostname is up and running ($($latency)ms latency)." + Write-Host "✅ Host '$hostname' is up with $($latency)ms ping latency." exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"