PS. I know there are a ton of free tools to do this, but I really want a batch file that I can re-use and re-edit and send to my guys to use for testing of new connections.
Fred D.
Main Topics
Browse All TopicsI need to create a batch file that will ping (in windows xp) a list or predifined set of IP addresses and then export the results to a text file, or a log file of any sort. I am not a programmer by any stretch, and I may be asking this in the wrong area, but any assistance would be greatly appreciated. All I can get it to do is ping an IP, and then the comand window closes with no output stored.
Thanks
Fred D.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Actually I finally figured it out. Using this line I can duplicate the lines, and have it output the results into seperate text files, and have it all nice and neat in a single batch file I can send out.
ping -n 10 XXX.XXX.XXX.XXX > c:\by\a2.txt
Fred D.
You did sort of open my eyes to what I wanted to do though.
Business Accounts
Answer for Membership
by: sirbountyPosted on 2007-01-31 at 19:23:04ID: 18441724
With a list of computers stored in C:\Computers.txt...running this from the command line will do what you ask...
For /f %a in (C:\Computers.txt) do ping %a -n 2 >> C:\Ping_Results.txt