PowerShell/docs/ping-host.md

84 lines
2.2 KiB
Markdown
Raw Normal View History

2024-11-08 12:38:20 +01:00
The *ping-host.ps1* Script
===========================
2024-03-27 17:36:59 +01:00
2024-11-08 12:35:11 +01:00
This PowerShell script pings the given host.
2024-03-27 17:36:59 +01:00
Parameters
----------
```powershell
2025-01-17 08:31:53 +01:00
/Repos/PowerShell/scripts/ping-host.ps1 [[-hostname] <String>] [<CommonParameters>]
2024-03-27 17:36:59 +01:00
-hostname <String>
2025-01-17 08:31:53 +01:00
Specifies the hostname or IP address to ping (x.com by default)
2024-03-27 17:36:59 +01:00
Required? false
Position? 1
2025-01-17 08:31:53 +01:00
Default value x.com
2024-03-27 17:36:59 +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.
```
Example
-------
```powershell
2024-11-08 12:35:11 +01:00
PS> ./ping-host.ps1 x.com
2025-01-17 08:31:53 +01:00
✅ Host 'x.com' with 20ms latency at IP 104.244.42.1 is up 👍
2024-03-27 17:36:59 +01:00
```
Notes
-----
Author: Markus Fleschutz | License: CC0
Related Links
-------------
https://github.com/fleschutz/PowerShell
Script Content
--------------
```powershell
<#
.SYNOPSIS
2024-11-08 12:35:11 +01:00
Pings a host
2024-03-27 17:36:59 +01:00
.DESCRIPTION
2024-11-08 12:35:11 +01:00
This PowerShell script pings the given host.
2024-03-27 17:36:59 +01:00
.PARAMETER hostname
2025-01-17 08:31:53 +01:00
Specifies the hostname or IP address to ping (x.com by default)
2024-03-27 17:36:59 +01:00
.EXAMPLE
2024-11-08 12:35:11 +01:00
PS> ./ping-host.ps1 x.com
2025-01-17 08:31:53 +01:00
✅ Host 'x.com' with 20ms latency at IP 104.244.42.1 is up 👍
2024-03-27 17:36:59 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
2025-01-17 08:31:53 +01:00
param([string]$hostname = "x.com")
2024-03-27 17:36:59 +01:00
try {
2025-01-17 08:31:53 +01:00
$remoteHosts = $hostname.Split(",")
$tasks = $remoteHosts | foreach { (New-Object Net.NetworkInformation.Ping).SendPingAsync($_,5000) }
[Threading.Tasks.Task]::WaitAll($tasks)
foreach($ping in $tasks.Result) {
if ($ping.Status -eq "Success") {
Write-Output "✅ Host '$hostname' with $($ping.RoundtripTime)ms latency at IP $($ping.Address) is up 👍"
exit 0 # success
} else {
Write-Output "⚠️ No reply from '$hostname' (IP $($ping.Address)) - check the connection or maybe the host is down."
exit 1
}
}
Write-Output "⚠️ No reply from host '$hostname' - check the connection or maybe the host is down."
exit 1
2024-03-27 17:36:59 +01:00
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
2025-01-17 08:37:30 +01:00
*(page generated by convert-ps2md.ps1 as of 01/17/2025 08:37:11)*