How do I create a batch file that will read a csv or txt file as input to ping a list of computers and then output a file of the computers that did not reply? I will not be pinging IP addresses; I will be pinging computer names. I've been using this as a batch script but it takes forever and then I have to hunt for all the bad computer names line by line.
@ECHO OFF
ping ORC11116413 -w 1000 > ping.txt
ping ORD11102296 -w 1000 >> ping.txt
Thanks in advance!
-Makila
Start Free Trial