Search the Community
Showing results for tags 'ping'.
-
I needed a function to ping many computers, and get the results of the pings in an array so to manage it easily in a script. Searching in the forum I found some interesting sw with a nice graphical interface, but not a generic function that simply return an array. a very powerful pinger I found is...
-
Hi everyone, I have a problem that I already had in the past and I didn't find any solution on this forum. Whenever I activate my VPN, I cannot use my internet connection anymore through scripts. For example, without VPN when I do : Ping("www.google.com") it works properly. With VPN ON...
-
Hi there - creating a simple script to triger cctv software to turn on when my phone is not connected to home wifi. But having issues with my phone (samsung s7) not answering ping when sleeping (despite wifi set to work when sleep) - not sure the issue... and ideas? Alternatively was wondering...
-
The file is now at I added a WOL, tidy up, and moved the file to the uploads section of the forum. Suggestions are always mostly welcomed
-
Version 0.2020.5.18
359 downloads
In the ZIP is the code and the compiled script. This is yet another ping the LAN utility. Is quite fast, as gathering the info. is forked. The Save Note, saves a note for the given MAC ( you may find it handy ) The Save MACs, saves the listview to an INI file that can be later use f... -
Hello everyone ! While writing a sample of code to test ping to my internet box, I got stuck.. While the code is Pinging with let say.. 5000ms of timeout, I need to update a progress bar from 0 to 5000 ms at the same time but I don't know how could I do this.. Is there a way or someth...
-
i want a script that "on the beginning of the program it pings to check if there is internet connectivity. if there is internet connectivity then it executes my code else if there is no internet it waits at background to detected internet connectivity then executes my code."...
-
Hello, Is there a way, preferably natively within AutoIt, to replicate: ping -i 2 <nearby_IP> The ping() function only has an option to set the timeout, but I want to set the TTL to 2 instead. Thanks, tk1
-
I want to check whether machine is up or not after we poweron a VM. So to check that, I am using ping. With the below command, when we run it, it will capture the value success or not with the errorlevel. ping -n 1 sinra09-lod11 >nul: 2>nul: so we can track the return code back usin...
-
Here are 4 small function that I use for a tool in my job to launch several ping simultaneously. It also offers the possibility to run in background - _Multiping - _MultiPingCancel - _MultipingGetInfo - _MultiPingGetResult _Multiping requires the use of the #pragma compile(AutoItExecu...
-
I have a rather strange issue on some machines. If I attempt to use the inbuilt PING function, no ICMP packet is sent out. Ping("internal.fqdn.com") is returning "Host Unreachable" If I ping using the command prompt, it's all fine. Using wireshark I can see that i...
-
Hello, I was looking around the net for a simple protable program to test whether you have an internet connection.. in short i couldnt find what i wanted so i wrote one. After looking on the forum i found some code snippets from others who had started to this kind of thing, but no completed proj...
- 20 replies
-
- internet
- connection
- (and 5 more)
-
I am trying to get a ping to continuously run until it the pings reply then show a msgbox that it is online. When I run this it just sits "idle" and does not seem to be doing anything Here is what I have Func _local2() Local $PID = ping("192.168.27.172") If $PID = 0 Then Do ping("192.168.2...
-
I have a customer that is complaining that a program, known to us to work, will not send out reports via e-mail. Now this site has Routers locked down tighter then you can imagine because they had been cracked before. I wrote a simple program that logs internet connectivity and connectivity on the l...
-
Even when you use the timeout parameter Ping() takes a minimum of ~500 ms on IP adresses without any device. $iTimer = TimerInit() For $iX = 1 To 10 Ping("10.0.0.111", 100) Next ConsoleWrite(Round(TimerDiff($iTimer) / 10) & " ms average" & @LF) Can anything be done to shorten this other th...