PowerShell/docs/ping-remote-hosts.md

92 lines
2.7 KiB
Markdown
Raw Normal View History

2024-01-25 13:37:12 +01:00
Script: *ping-remote-hosts.ps1*
========================
2024-01-03 12:11:22 +01:00
This PowerShell script measures the ping roundtrip times from the local computer to remote ones (10 Internet servers by default).
Parameters
----------
```powershell
PS> ./ping-remote-hosts.ps1 [[-hosts] <String>] [<CommonParameters>]
-hosts <String>
Specifies the hosts to ping, seperated by commata (10 Internet servers by default)
Required? false
Position? 1
Default value bing.com,cnn.com,dropbox.com,github.com,google.com,ibm.com,live.com,meta.com,x.com,youtube.com
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-remote-hosts.ps1
2024-05-19 10:25:56 +02:00
✅ Online with 18ms latency (13...109ms, 0/10 ping loss)
2024-01-03 12:11:22 +01:00
```
Notes
-----
Author: Markus Fleschutz | License: CC0
Related Links
-------------
https://github.com/fleschutz/PowerShell
Script Content
--------------
```powershell
<#
.SYNOPSIS
Pings remote hosts to measure the latency
.DESCRIPTION
This PowerShell script measures the ping roundtrip times from the local computer to remote ones (10 Internet servers by default).
.PARAMETER hosts
Specifies the hosts to ping, seperated by commata (10 Internet servers by default)
.EXAMPLE
PS> ./ping-remote-hosts.ps1
2024-05-19 10:25:56 +02:00
✅ Online with 18ms latency (13...109ms, 0/10 ping loss)
2024-01-03 12:11:22 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
param([string]$hosts = "bing.com,cnn.com,dropbox.com,github.com,google.com,ibm.com,live.com,meta.com,x.com,youtube.com")
try {
$hostsArray = $hosts.Split(",")
2024-05-19 10:25:56 +02:00
$tasks = $hostsArray | foreach { (New-Object Net.NetworkInformation.Ping).SendPingAsync($_,750) }
2024-01-03 12:11:22 +01:00
[int]$min = 9999999
[int]$max = [int]$avg = [int]$success = 0
[int]$total = $hostsArray.Count
2024-05-19 10:25:56 +02:00
[Threading.Tasks.Task]::WaitAll($tasks)
foreach($ping in $tasks.Result) {
2024-01-03 12:11:22 +01:00
if ($ping.Status -ne "Success") { continue }
$success++
[int]$latency = $ping.RoundtripTime
$avg += $latency
if ($latency -lt $min) { $min = $latency }
if ($latency -gt $max) { $max = $latency }
}
[int]$loss = $total - $success
if ($success -ne 0) {
$avg /= $success
2024-05-19 10:25:56 +02:00
Write-Host "✅ Online with $($avg)ms latency ($($min)...$($max)ms, $loss/$total ping loss)"
2024-01-03 12:11:22 +01:00
} else {
Write-Host "⚠️ Offline ($loss/$total ping loss)"
}
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
2024-05-19 10:25:56 +02:00
*(generated by convert-ps2md.ps1 using the comment-based help of ping-remote-hosts.ps1 as of 05/19/2024 10:25:24)*