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, ∼3374🔥, 0💬
Popular Posts:
Where to find tutorials on using Windows 7? I want to learn how to use Windows 7 more efficiently. H...
What is "Net.Msmq Listener Adapter" in my Windows 7 service list? And how is "Net.Msmq Listener Adap...
What is "Health Key and Certificate Management" in my Windows XP service list? And how is "Health Ke...
Where to find information about what services are running on Windows 8 and how to manage them? I wan...
I have created a table in MS Access. How do I create a form to help enter data into the table? Assum...