我想只在没有互联网连接的情况下打开一个程序,我想用批处理文件来完成它。 我记得这样的事情:
if (! www.google.com) {start myprogram.exe}
else {echo "The computer is connected to the internet"}
但我从未深入研究过命令窗口,有人能告诉我如何编写这个小“程序”吗?
答案 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