Page 1 of 1
connect or disconnect
Posted: 11 Jul 2011 00:57
by Mohammad_Dos
I want to write a batch file that tell me i am connected to the internet or disconnected.
by using "ping" and "erorlevel"
Re: connect or disconnect
Posted: 11 Jul 2011 04:39
by Mohammad_Dos
someone answer me!!!
Re: connect or disconnect
Posted: 11 Jul 2011 04:56
by shiva
hai
i am unable to get the server address with batch programming,
but using google site as server i made the batch file,
this will not effect any other server address
the batch file is as follows:
@echo off
set server=www.google.com
ping %server%
if %ERRORLEVEL%==0 (
@echo internet was connected
) else (
@echo internet was notconnected
)
@echo on
pause
this will show the internet connectivity,
if you are intrested change your local subscriber address as server address,
thank you
shiva
Re: connect or disconnect
Posted: 11 Jul 2011 10:15
by aGerman
... or something like that:
Code: Select all
@echo off
ping -n 1 google.com >nul &&(
echo connected
) || (
echo disconnected
)
pause
Regards
aGerman
Re: connect or disconnect
Posted: 11 Jul 2011 17:07
by Cleptography
aGerman wrote:... or something like that:
Code: Select all
@echo off
ping -n 1 google.com >nul &&(
echo connected
) || (
echo disconnected
)
pause
Regards
aGerman
@aGerman
Could you explain how this script is working, I am fumbling with the concept of ) || (
Thank you.
Re: connect or disconnect
Posted: 12 Jul 2011 10:50
by aGerman
command1 && command2
command2 will be executed if command1 was successful (ErrorLevel is 0)
command1 || command2
command2 will be executed if command1 failed (ErrorLevel not 0)
command1 && command2 || command3
command2 will be executed if command1 was successful, else command3 will be executed.
Regards
aGerman
Re: connect or disconnect
Posted: 12 Jul 2011 11:26
by Cleptography
@aGerman
Thank You.
Re: connect or disconnect
Posted: 12 Jul 2011 11:36
by aGerman
You're welcome.
I had a c/p failure in my 2nd example ... fixed.
Regards
aGerman
Re: connect or disconnect
Posted: 12 Jul 2011 13:16
by Mohammad_Dos
thank u shiva
thank u aGerman
Re: connect or disconnect
Posted: 07 Aug 2011 23:54
by shiva
you are welcome dude...........,