I am making a script as a ping command and I want to get only the response from packets sent and received, so far I can only put the ping media using this variable:
for /f "tokens=* delims= " %%i in ('ping -n 4 172.16.7.144^|find "ms"') do set "tempo=%%i"
echo.%tempo%
I want one now that only shows me the packets sent and received.