Created
August 10, 2021 19:02
-
-
Save karoltheguy/bccfaf29472c5a73e8ff71fa3ea5d3da to your computer and use it in GitHub Desktop.
Powershell Ping
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Test-PSOnePing | |
{ | |
<# | |
.SYNOPSIS | |
Sends a ping (ICMP) to a computer | |
.DESCRIPTION | |
Sends a ping (ICMP) to a computer | |
.EXAMPLE | |
Test-PSOnePing -ComputerName 127.0.0.1, microsoft.com, powershell.one -Timeout 2000 | |
Pings three computers with a maximum timeout of 2000 milliseconds | |
.EXAMPLE | |
'127.0.0.1', 'microsoft.com', 'powershell.one' | Test-PSOnePing -Timeout 2000 | |
Pings three computers with a maximum timeout of 2000 milliseconds | |
.EXAMPLE | |
Get-ADComputer -Filter * | Select-Object -ExpandProperty Name | Test-PSOnePing -Timeout 2000 | |
Pings all computers received from Get-ADComputer with a maximum timeout of 2000 milliseconds | |
Module "ActiveDirectory" required for Get-ADComputer | |
.LINK | |
https://powershell.one/tricks/network/ping | |
#> | |
param | |
( | |
# Computername or IP address to ping | |
[Parameter(Mandatory,ValueFromPipeline)] | |
[string[]] | |
$ComputerName, | |
# Timeout in milliseconds | |
[int] | |
[ValidateRange(100,50000)] | |
$Timeout = 2000 | |
) | |
begin | |
{ | |
$Online = @{ | |
Name = 'Online' | |
Expression = { $_.Status -eq 'Success' } | |
} | |
$obj = New-Object System.Net.NetworkInformation.Ping | |
} | |
process | |
{ | |
$ComputerName | | |
ForEach-Object { | |
$obj.Send($_, $timeout) | | |
Select-Object -Property $Online, Status, Address | | |
Add-Member -MemberType NoteProperty -Name Name -Value $_ -PassThru | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment