mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 06:20:42 +02:00
Update check-ping.ps1
This commit is contained in:
parent
5c20eefd4d
commit
30d1fc6a37
@ -1,8 +1,9 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
check-ping.ps1
|
check-ping.ps1 [<hosts>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Checks the ping latency from the local computer to the internet.
|
Checks the ping latency from the local computer to Internet hosts.
|
||||||
|
(default is: 'amazon.com,bing.com,cnn.com dropbox.com,ebay.com,facebook.com,google.com,youtube.com)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\check-ping.ps1
|
PS> .\check-ping.ps1
|
||||||
.LINK
|
.LINK
|
||||||
@ -11,9 +12,12 @@
|
|||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
|
param([string]$hosts = "amazon.com,bing.com,cnn.com,dropbox.com,ebay.com,facebook.com,google.com,youtube.com")
|
||||||
|
|
||||||
try {
|
try {
|
||||||
write-verbose "Sending pings to the internet ..."
|
write-progress "Sending pings to $hosts..."
|
||||||
$Pings = test-connection -count 1 -computerName heise.de,cnn.com,github.com,www.microsoft.com,dropbox.com,amazon.com,google.com,bing.com,youtube.com
|
$HostsArray = $hosts.Split(",")
|
||||||
|
$Pings = test-connection -count 1 -computerName $HostsArray
|
||||||
|
|
||||||
[int]$Min = 9999999
|
[int]$Min = 9999999
|
||||||
[int]$Max = 0
|
[int]$Max = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user