vote up 0 vote down star

I have a program that I want to automate runs for, since it takes awhile to complete. For some reason it outputs everything to stderr instead of stdout, and I'd like to check on its progress, so I find myself needing to redirect stderr output within a start command.

I tried this:

start "My_Program" "C:\Users\Me\my_program.exe" --some --presets --for --my_program.exe --output "C:\Users\Me\output_file_for_my_program" "C:\Users\Me\input_file_for_my_program" 2>"C:\Users\Me\my_program_output.log"

But it turns out that the redirect is being picked up by start, so that I get a 0-byte file with the result of "start" - namely, nothing. Is there any way to make the output redirection attach in some way to the output of my_program?

I've experimented with escaping, and neither "^2>" nor "2^>" seem to work. Any help would be greatly appreciated!

flag
Is there any reason you're using <code>start</code> and not just <code>"C:\Users\Me\my_program.exe" --some --presets --for --my_program.exe --output "C:\Users\Me\output_file_for_my_program" "C:\Users\Me\input_file_for_my_program" 2>"C:\Users\Me\my_program_output.log"</code>? – Andrew Koester Aug 20 at 21:08
I'm calling this in a different program, and it needs to be run in the background. start is the only way I've been able to do that, which is strange since you'd think that the output would be redirected to the logfile but for some reason it's not. Basically, I have no idea why that doesn't work, but it doesn't for some reason. – Shal_Dengeki Aug 20 at 21:10
Please do not open the same question on multiple sites: serverfault.com/questions/56865/… – EBGreen Aug 20 at 21:11
Apologies, I realised after opening the question on serverfault that it wasn't the correct place to ask that question. I'll see if I can't close it. – Shal_Dengeki Aug 20 at 21:12
Actually you have an answer there. I would wait until it get moved then close this one. – EBGreen Aug 20 at 21:15

1 Answer

vote up 0 vote down

If "Workaround Oriented Programmming" is acceptable (it probably is, you are programming Windows Batch lol), you could put the problematic code line in another .BAT file, without any "start" and then "start" this other BAT.

link|flag
Yeah, at this point I'm just looking for a way to get this to work. I'd rather not use batch files, because this particular command needs to be run multiple times with different input and output files, as well as different arguments, but as a last resort, I'll try that. – Shal_Dengeki Aug 20 at 21:20
What program is this? – Havenard Aug 20 at 21:44
I'm running x264. – Shal_Dengeki Aug 20 at 21:55
Well I built a "YouTube" once, using ffmpeg to compile the videos. I made a script to compile all videos from a folder from any format to .flv Maybe it helps: pastebin.com/f6af803b – Havenard Aug 20 at 22:03
Shal: You can pass arguments to batch files as well. In that case you could just have someprogram %* in your batch which will pass any arguments to the batch to the program. – Johannes Rössel Aug 21 at 0:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.