I have a command line tool that typically dumps out about 200+ lines of output. I'm looking for text that appears at the end of this output. When I redirect the output to a file:
C:\> somecommand > results.txt 2>&1
...only the first 100 or so lines of output shows up in this file. Likewise, if I pipe the output into something like 'findstr', the receiving program is unable to find or operate on any text after about the 100th line.
The screen buffer size settings for the shell appear to have no effect whatsoever on the number of lines that can be captured.
Any ideas what is going on here? For what it's worth, the command in question is iscmdbld.exe from InstallShield 2012.
This problem does not occur with other commands I've tried (such as 'dir').
The full output from the program can only be viewed when running the command within a cmd window.