In this FREE six-day email course, you'll learn from Janis Griffin, Database Performance Evangelist. She'll teach 12 steps that you can use to optimize your queries as much as possible and see measurable results in your work. Get started today!
FOR /f %a in (‘complist.txt’) do echo Computer: %a
replace the echo with the line you have and make sure to change the redirect (>) to append using (>>)
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
Have a better answer? Share it in a comment.
Try adding:
> filename.txt
On the end, it should the output to a file.
Open in new window