How to find IP Hosts in Network using Ping

Ping in the PowerShell with Test-Connection

()

PowerShell ICMP Ping Test-Connection

Powershell Test-Connection has its own cmdlet to send Ping ICMP packets to other computers to check their availability. Compared to conventional ping, it offers more options, such as addressing multiple target computers at the same time. Basically, you can also call the Windows utility Ping.exe in PowerShell.

The Test-Connection cmdlet in PowerShell 7 includes advanced features such as Repeat and Traceroute or as a ping process in the background.

Ping in the PowerShell with Test-Connection

Examples Ping with Test-Connection in PowerShell

The Test-Connection Powershell cmdlet sends Ping Internet Control Message Protocol (ICMP) Echo request packets to one or more comma-separated remote hosts and returns the Echo responses.

PS C:\> Test-Connection 8.8.8.8, 8.8.4.4, time.google.com

With the -Repeat option, as is known from Ping, ICMP requests are sent to the specified host until the end of the operation, by entering CTRL+BREAK.

PS C:\> Test-Connection 1.1.1.1 -Repeat

This example shows how to run a test connection command as a PowerShell background job.

PS C:\> $job = Start-Job -ScriptBlock { Test-Connection -TargetName (Get-Content -Path "Servers.txt") }
$Results = Receive-Job $job -Wait

Traceroute with Test-NetConnection

Use Traceroute in PowerShell 5.1 which is installed by default in Windows 10.

PS C:\> Test-NetConnection 1.1.1.1 -TraceRoute

ComputerName           : 1.1.1.1
RemoteAddress          : 1.1.1.1
InterfaceAlias         : WLAN
SourceAddress          : 192.168.1.3
PingSucceeded          : True
PingReplyDetails (RTT) : 5 ms
TraceRoute             : 192.168.1.1
                         85.7.42.1
                         193.134.95.170
                         138.187.131.211
                         138.187.129.97
                         1.1.1.1

Traceroute with Test-Connection in PowerShell

The Traceroute parameter introduced in PowerShell 6.0 arranges route tracking between the local computer and the remote destination specified by parameters.

PS C:\> Test-Connection www.google.com -Traceroute -IPv4

Note. using traceroute it need PowerShell 6 or newer.

In another example, parameters are used to customize the Test Connection command. The local computer sends a ping test to a remote computer.

PS C:\> Test-Connection -TargetName Server10 -Count 4 -Delay 2 -MaxHops 128 -BufferSize 256

This cmdlet is available from PowerShell 6.0 and later.

Test-Connection TCP Port Parameters

The parameter -TcpPort specifies the TCP port number to the destination to use in the TCP connection test. The cmdlet attempts to establish a TCP connection with the specified port to the destination.

PS C:\> Test-Connection -TargetName isc.org -TcpPort 443

If a connection can be established, $True is returned. If a connection cannot be established, $False is returned. The Paramter -TcpPort is available from PowerShell 7.0 and later.

Test-Connection MTU Size Parameters

The parameter -MtuSize is used to determine the path MTU size.

PS C:\> Test-Connection -TargetName ripe.org -MtuSize

The cmdlet returns a PingReply MTU Size object that contains the MTU size path to the target, it is available from PowerShell 7.0 and later.

Test-Connection Parameter Quiet

The parameter -Quiet returns a Boolean value. Using this parameter to suppresses all errors.

PS C:\> Test-Connection -TargetName iana.org -Quiet

This cmdlet is available from PowerShell 7.0 and later.

PowerShell Remoting Test-Connection

The next example creates a session to Server2 if at least one of the pings sent to the computer succeeds. To do this, you must configure TrustedHosts on the remote computer.

PS C:\> if (Test-Connection -TargetName Server2 -Quiet) { New-PSSession -ComputerName Server2 }

To use HTTP for PowerShell remoting, run the following command on the remote host from Command Prompt as administrator.

winrm quickconfig

The TrustedHosts configuration setting is done by running winrm.cmd with the config/client option on the remote host.

winrm set winrm/config/client @{TrustedHosts="192.168.1.2"}

Accept reply from 192.168.1.2. The query for the Global Configuration of WinRM is as follows.

winrm get winrm/config/client

How useful was this post?

Click on a star to rate it!

Average rating / 5. Vote count:

No votes so far! Be the first to rate this post.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Leave a Reply

Your email address will not be published. Required fields are marked *