質問

For one file it's showing standard error on console i.e. command prompt. I want to print it on text file.

役に立ちましたか?

解決

some_file.exe >> text.file 2>&1

this will print all output to text file.For more info.

他のヒント

You should use

command 2>file

See http://support.microsoft.com/kb/110930

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top