Batch Files - Using ping to test network connectivity

前端 未结 8 1113
名媛妹妹
名媛妹妹 2021-01-04 17:17

Using a batch file would it be possible to do something like:

ping google.com

if return success do ECHO You are connected to the internet

else return

8条回答
  •  梦谈多话
    2021-01-04 17:54

    echo Testing Internet Connection of google.com
    @echo off
    :loop
    ping google.com -n 1 -w 5000 > nul
    if errorlevel 1 echo %date% - %time% Not connected >> pingtestlog.txt
    ping -n 30 127.0.0.1 > nul
    goto loop
    

提交回复
热议问题