Make a batch script to test whether the connection to a certain IP address is normal. Below is what I wrote, very crude haha.
ping 17.0.11.1 > a.txt
type a.txt | find "ms" && echo ----Connection is normal----
Is there a way to determine connectivity without generating a .txt file?
Thanks
ping 17.0.11.1 > a.txt
type a.txt | find "ms" && echo ----Connection is normal----
Is there a way to determine connectivity without generating a .txt file?
Thanks
