• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

I need DOS help

BigDog2k

Member
I know this is going back aways, but I need some dos help. I want to write a batch file that will allow me to ping numbers in a group and the send the results to a file. Let me know what you folks think
 
Here's a little batch program that you can use as a template.

ping www.annandtech.com > annand.dat
ping www.msn.com > msn.dat
ping www.cris.com > cris.dat
copy annand.dat+msn.dat+cris.dat pingdata.dat

The final results of the three pings wind up in pingdata.dat. I finally used the copy command after the pings to put the three ping files into one file because the ">>" (append to file redirector symbols) don't appear to work in Win2000.)
 
Back
Top