copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
Ping - Request timed out on a local network - Stack Overflow 7 I'm trying to ping another computer that is connected to the same Wi-Fi network Pinging to anything else (localhost, website, etc ) works fine But when I try to ping to the local ip address of my second computer I get a Request timed out message $ ping target_ip Pinging target_ip with 32 bytes of data: Request timed out Request timed out
Checking host availability by using ping in bash scripts 5 FYI, I just did some test using the method above and if we use multi ping (10 requests) the result of multi ping command will be "0" if at least one of ping result reachable, and "1" in case where all ping requests are unreachable
Batch Files - Using ping to test network connectivity Using a batch file would it be possible to do something like: ping google com if return success do ECHO You are connected to the internet else return ECHO You are not connected to the internet
cmd - Ping with timestamp on Windows CLI - Stack Overflow Start the ping, force a correct line buffered output (find v), and start a cmd process with delayed expansion enabled that will do an infinite loop reading the piped data that will be echoed to console prefixed with the current time
Save Ping Output to Text File - Stack Overflow I am using this batch command to save ping output to a text file, ping 10 226 2 10 -n 10 >>ping_ip txt But when i saved the above command in a batch file and trying to run it, in command pr
Using ping in c# - Stack Overflow Using ping in C# is achieved by using the method Ping Send(System Net IPAddress), which runs a ping request to the provided (valid) IP address or URL and gets a response which is called an Internet Control Message Protocol (ICMP) Packet
Ping multiple computers through Excel and return IP addresses I have two working buttons, ping and stop ping How can I by pressing the ping button, go through all the computers in column A and show their IPs and if they are online or not, all at once? It doesn't have to be done through Excel, if there is a better solution with a view of comp name, comp ip, online offline Usernames would be nice to have
How to ping multiple servers and return IP address and Hostnames using . . . Basically, the server HOSTNAMES are all listed in a txt file I used the following code to ping all the servers and display their results in a txtfile For f %%i in (testservers txt) do ping -n 1 %%i >>pingtest txt The above pinged all the servers Now, I want to output the IP addresses and the HOST Names in a separate file How can I do this?