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, 2527🔥, 0💬
Popular Posts:
What are Exploit-ObscuredHtml Trojan Web Pages? If you have McAfee VirusScan installed, sometimes yo...
What is the startup program "Delayed launcher - IAStorIconLaunch.exe" on my Windows 8 computer? Can ...
What is BTStackServer.exe Process - Bluetooth Stack COM Server? Process BTStackServer.exe is the Blu...
A collection of 39 tutorials on understanding and managing Windows startup programs: What is a start...
How to download and install JDK (Java SE Development Kit) 6? If you want to download and install JDK...