Simple DOS question

Joined
Jan 14, 2004
Messages
613
Hello. I have a command line program that checks to see if rmvb are broken or not. I created a batch file to run all my files through this program. However, when the batch is done, only info for the last 10 files are shown and it cuts off after that.

Is there any way to save what appears in the command prompt into a log file or to make it so it doesn't cut off after so many lines of text has been shown? Thanks in advance.
 
I know I've used something like this in the past

C:\program.exe > output.txt
 
Or use >> to append the file. Since you are writing logs, that might be more useful.
 
Back
Top