如果没有连接,请通过批处理文件打开程序

时间:2014-10-16 07:26:37

标签: batch-file connection batch-processing

我想只在没有互联网连接的情况下打开一个程序,我想用批处理文件来完成它。 我记得这样的事情:

if (! www.google.com) {start myprogram.exe} 
else {echo "The computer is connected to the internet"} 

但我从未深入研究过命令窗口,有人能告诉我如何编写这个小“程序”吗?

1 个答案:

答案 0 :(得分:1)

首先ping某处并检查ping是否有效。对于ping,errorlevel 1 =失败,errorlevel 0 =成功

ping -n 1 google.com > NUL
if errorlevel 1 (
    myprogram.exe
) else (
    echo The computer is connected to the internet
)
pause