Jump to content

Run a command only when internet connection available


Recommended Posts

I have to run a command automatically at startup. For this, I use a CMD file.

The problem is the program needs internet connection. If it doesn't, then it will timeout and exit.

When Windows logs on, the network connection is not available yet (DHCP).

Can I do something like: loop a command to check internet connection (an address like www.google.com), and when it's available, do the rest of the commands?

Link to comment
Share on other sites


Sure :yes: , you ping some server (you need a pingable address, some DNS aren't) and you should use an actual IP, as you may have internet connection but the DNS may not be available, depending on the result of the ping conditionally execute the command.

See here:

http://www.msfn.org/board/index.php?showtopic=131680

http://www.msfn.org/board/index.php?showtopic=139853

for some example/links.

Essentially you need a single line like:

@ping 74.125.53.106 -n 1 >NUL&&ECHO OK, FOUND!

jaclaz

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...