Renamed check-ping.ps1 to ping-remote-hosts.ps1

This commit is contained in:
Markus Fleschutz 2024-01-03 12:09:47 +01:00
parent cb182e897b
commit fa9c10d2a4
2 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@
" "
& "$PSScriptRoot/write-green.ps1" " N E T W O R K"
& "$PSScriptRoot/check-ping.ps1"
& "$PSScriptRoot/ping-remote-hosts.ps1"
& "$PSScriptRoot/check-firewall"
& "$PSScriptRoot/check-dns.ps1"
& "$PSScriptRoot/check-vpn.ps1"

View File

@ -1,12 +1,12 @@
<#
.SYNOPSIS
Checks the ping latency
Pings remote hosts to measure the latency
.DESCRIPTION
This PowerShell script measures the ping roundtrip times from the local computer to other ones (10 Internet servers by default).
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> ./check-ping.ps1
PS> ./ping-remote-hosts.ps1
Online with 18ms latency (13ms...109ms, 0/10 ping loss)
.LINK
https://github.com/fleschutz/PowerShell