Collections:
Other Resources:
"Test-Connection" Cmdlet in Windows PowerShell
How to use "Test-Connection" cmdlet in Windows PowerShell?
✍: FYIcenter.com
"Test-Connection" cmdlet in Windows PowerShell is similar to the old "ping" command.
The Test-Connection cmdlet sends Internet Control Message Protocol (ICMP) echo request packets ("pings") to one or more remote computers and returns the echo response replies. You can use this cmdlet to determine whether a particular computer can be contacted across an Internet Protocol (IP) network.
You can use the parameters of Test-Connection to specify both the sending and receiving computers, to run the command as a background job, to set a timeout and number of pings, and to configure the connection and authentication.
Unlike the traditional "ping" command, Test-Connection returns a Win32_PingStatus object that you can investigate in Windows PowerShell, but you can use the Quiet parameter to force it to return only a Boolean value.
The following example shows how to test connections with multiple remote computers:
PS C:\fyicenter> test-connection www.google.com,www.yahoo.com -Count 1 Destination IPV4Address Bytes Time(ms) ----------- ----------- ----- -------- www.yahoo.com 98.138.253.109 32 52 www.google.com 172.217.4.164 32 76
You can also test the connection between two remote computers. For example, this command tests the connection from the Webserver to the DBserver:
PS C:\fyicenter> test-connection DBserver -Source Webserver
Note that "test-connection" cmdlet will fail, if the network firewall stops the ICMP protocol between the two computers.
⇒ Windows PowerShell Session with Remote Computers
⇐ Remote Computing Overview in Windows PowerShell
2016-10-17, ∼3578🔥, 0💬
Popular Posts:
How to start Apache server manually on Windows systems? If you followed our Apache server installati...
What is "Net.Msmq Listener Adapter" in my Windows 7 service list? And how is "Net.Msmq Listener Adap...
How to uninstall ActivePerl 5.8.8.820? If for some reason you want to uninstall ActivePerl from your...
Setting Passwords in ZIP Files 1. Run WinZip and select menu File > New Archive. The "New Archive" d...
I am unable to copy data from my external hard-disk (NTFS). When I try to repair it from cmd using c...