2023-07-29 10:34:04 +02:00
*check-ping.ps1*
================
2021-11-08 21:36:42 +01:00
2023-07-29 09:45:37 +02:00
This PowerShell script measures the ping roundtrip times from the local computer to 10 Internet servers.
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Parameters
----------
2021-11-08 21:36:42 +01:00
```powershell
2023-07-29 10:15:44 +02:00
PS> ./check-ping.ps1 [[-hosts] < String > ] [< CommonParameters > ]
2021-11-08 21:36:42 +01:00
-hosts < String >
2023-07-29 09:45:37 +02:00
Specifies the hosts to check, seperated by commata (default is: amazon.com,bing.com,cnn.com,dropbox.com,facebook.com,github.com,google.com,live.com,twitter.com,youtube.com)
2021-11-08 21:36:42 +01:00
Required? false
Position? 1
2023-07-29 09:45:37 +02:00
Default value amazon.com,bing.com,cnn.com,dropbox.com,facebook.com,github.com,google.com,live.com,twitter.com,youtube.com
2021-11-08 21:36:42 +01:00
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.
```
2023-07-29 10:04:38 +02:00
Example
-------
2021-11-08 21:36:42 +01:00
```powershell
2023-08-06 21:36:33 +02:00
PS> ./check-ping.ps1
2023-07-29 09:45:37 +02:00
✅ Ping latency is 29ms average (13ms...109ms, 0 loss)
2021-11-08 21:36:42 +01:00
```
2023-07-29 10:04:38 +02:00
Notes
-----
2022-11-17 19:46:02 +01:00
Author: Markus Fleschutz | License: CC0
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Related Links
-------------
2021-11-08 21:36:42 +01:00
https://github.com/fleschutz/PowerShell
2023-07-29 10:04:38 +02:00
Script Content
--------------
2022-11-17 20:05:34 +01:00
```powershell
2022-11-17 20:02:26 +01:00
< #
.SYNOPSIS
Checks the ping latency
.DESCRIPTION
2023-07-29 09:45:37 +02:00
This PowerShell script measures the ping roundtrip times from the local computer to 10 Internet servers.
2022-11-17 20:02:26 +01:00
.PARAMETER hosts
2023-07-29 09:45:37 +02:00
Specifies the hosts to check, seperated by commata (default is: amazon.com,bing.com,cnn.com,dropbox.com,facebook.com,github.com,google.com,live.com,twitter.com,youtube.com)
2022-11-17 20:02:26 +01:00
.EXAMPLE
2023-08-06 21:36:33 +02:00
PS> ./check-ping.ps1
2023-07-29 09:45:37 +02:00
✅ Ping latency is 29ms average (13ms...109ms, 0 loss)
2022-11-17 20:02:26 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
2023-07-29 09:45:37 +02:00
param([string]$hosts = "amazon.com,bing.com,cnn.com,dropbox.com,facebook.com,github.com,google.com,live.com,twitter.com,youtube.com")
2022-11-17 20:02:26 +01:00
try {
2023-07-29 09:45:37 +02:00
Write-Host "✅ Ping latency is" -noNewline
$hostsArray = $hosts.Split(",")
$t = $hostsArray | foreach {
(New-Object Net.NetworkInformation.Ping).SendPingAsync($_, 250)
2022-11-17 20:02:26 +01:00
}
2023-07-29 09:45:37 +02:00
[Threading.Tasks.Task]::WaitAll($t)
[int]$min = 9999999
[int]$max = [int]$avg = [int]$successCount = [int]$lossCount = 0
foreach($ping in $t.Result) {
if ($ping.Status -eq "Success") {
[int]$latency = $ping.RoundtripTime
if ($latency -lt $min) { $min = $Latency }
if ($latency -gt $max) { $max = $Latency }
$avg += $latency
$successCount++
} else {
$lossCount++
}
}
$avg /= $successCount
Write-Host " $($avg)ms average ($($min)ms...$($max)ms, $lossCount loss)"
2022-11-17 20:02:26 +01:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
2022-11-17 20:05:34 +01:00
```
2022-11-17 20:02:26 +01:00
2023-08-06 21:36:33 +02:00
*(generated by convert-ps2md.ps1 using the comment-based help of check-ping.ps1 as of 08/06/2023 21:36:06)*