Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
6k views

ProcessInfo and RedirectStandardOutput

I have an app which calls another process in a command window and that process has updating stats that output to the console window. I thought this was a fairly simple operation but I can't seem to ...
5
votes
3answers
228 views

Why does a process started in dll work when tested using console application but not when called by another dll?

Last week I posted this question: How can I obtain console application output when running it as a process in a C# dll as I was trying to find out the cause of a problem I was having. However, I have ...
4
votes
1answer
172 views

Why the RedirectStandardOutput does not have the necessary ANSI codes?

Ok here's a simple Console Application I made to test the RedirectStandardOutput of the Process.StartInfo. foreach (c In [Enum].GetValues(GetType(ConsoleColor)) { ...
3
votes
4answers
66 views

System.out.println without printing to file when using “ > filename”

I have a peculiar problem. I have a Java program that is run with the command : cat input_file_name | ./script_name > file_output_name the script_name script just does : java myprogram My ...
3
votes
1answer
450 views

Redirecting Standard Output from a Process (msxsl.exe) to a string in VB.NET

I am writing a command line application in VB.NET. This application is calling another one, msxsl.exe, to run an XSL transform. I am using the Process class to do this: Dim process = New Process() ...
3
votes
2answers
265 views

Correct way to handle standard error and output from a program when spawned via Process class from C#?

I read the documentation for Process.StandardOutput, which has this quote: A deadlock condition can result if the parent process calls p.WaitForExit before p.StandardOutput.ReadToEnd and the child ...
3
votes
4answers
2k views

check output in MSTest unit test

I want to capture output sent to standard out and standard error within an MSTest unit test so that I can verify it. I've captured output before when explicitly running a Process, but is there a way ...
2
votes
1answer
331 views

StandardOutput.ReadToEnd() hangs

I have a program that frequently uses an external program and reads its outputs. It works pretty well using your usual process redirect output, but one specific argument for some reason hangs when I ...
2
votes
1answer
119 views

Get .NET Process object to flush input stream continously?

I am trying to change my class library that talks to the Mercurial command line client, and new in the 1.9 client is the ability to spin up a server and talk to it over the standard input/output ...
2
votes
1answer
309 views

How to redirect standard output when spawning a process

I've built a webservice for an internal server that I want to send a command to and have it launch a process. So I want to send a command to it like this: ...
2
votes
0answers
608 views

Trying to redirect binary stdout of ffmpeg to NeroAacEnc stdin

I am trying to write a program in C# 2010 that converts mp3 files to an audio book in m4a format via ffmpeg.exe and NeroAACenc.exe. For doing so I redirect stdout of ffmpeg to stdin of the Nero ...
1
vote
0answers
79 views

Reading Standard Output from a Command Line process without newline

I'm writing a C# GUI Wrapper that wraps around an executable (which I CAN NOT modify because I do not have the source code). The problem I'm facing appears to be related to the fact the executable ...
1
vote
1answer
82 views

Breaking away a process started from C#

I have some existing code making use of System.Diagnostics.Process.Start to start a child process. It also uses ProcessStartInfo.RedirectStandardOutput to capture the output stream of that process. ...
1
vote
3answers
98 views

Streaming Standard Output of a console application to an ASP.NET MVC View

What I am looking to do is: 1) From an MVC View, Start a long running Process. In my case, this process is a seperate Console Application being executed. The Console Application runs for potentially ...
1
vote
4answers
92 views

Why do I get different exit codes in C# while redirecting output from a batch script?

When I redirect standardOutput when calling a batch script comparing two files using FC, I get different output compared to when I don't redirect output. What is wrong? This code will print "0" to my ...
1
vote
1answer
344 views

Redirect Error Stream to File and Console in Windows

I want to redirect error stream from java console application to file and console. In normal situation the error is displayed only in console. I want to be displayed in console and file. How can I ...
1
vote
2answers
227 views

standardoutput pauses loop at end of stream C#

I am reading the output of a java application started using Process and reading stdError, stdOutout and using stdInput to send commands. Here is the relevant code: int mem = ...
1
vote
1answer
181 views

Getting stdout from console app asyncronously without waiting for console to exit

I have an issue with getting some console standard output from a small long running console app spawned by my application. My app starts the console app and the console app will stay alive listening ...
1
vote
2answers
138 views

Reading StandardOutput problem

I want to execute a javascript that returns a string like 'GEORGE SMITH'. I want to read that information but when y run this code I get: " The specified executable is not a valid Win32 application" ...
1
vote
3answers
409 views

Console application doesn't periodically flush output

I'm using a 3rd party console application that periodically outputs data to the console line by line. When I attempted to run it through my App so that I can parse the output data, I noticed that the ...
1
vote
1answer
369 views

RedirectStandardOutput and the pause command in batch files

In my C# code, I have to run some external processes. These could be batch files or executables. I redirect the output to a window of my own by having RedirectStandardOutput of the ProcessStartInfo be ...
1
vote
0answers
312 views

Monitor process output without stealing it from the shell

I have a shell program that sends output to standard out and standard error. I am trying to write a program in VB.net which inspects the output in real time and presents summarized information in a ...
1
vote
1answer
290 views

Problem with StandardOutput stream in async mode

I have a program that launches command line processes in async mode, using BeginOutputReadLine. My problem is that the .Exited event is triggered when there is still some .OutputDataReceived events ...
0
votes
0answers
16 views

Under .NET, what is the effect of using RedirectStandardError but killing the parent process before the child finishes writing to STDERR?

According to the literature, when using RedirectStandardError the child will block when the stream is full, so it is necessary for the parent to consume that stream somehow. In a scenario involving ...
0
votes
1answer
48 views

How do I get RedirectStandardOutput to work in NUnit?

I am working on an automation strategy for our QA group and need to be able to capture the output of scripts and EXEs. When I run this code as a Console app, I am able to successfully capture the ...
0
votes
1answer
111 views

Getting Binary Data from StandardOutput

I'm starting a process with code similar to that below: // some of the flags are not needed process.StartInfo.CreateNoWindow = true; process.StartInfo.ErrorDialog = false; ...
0
votes
0answers
36 views

Catching system output of a running process

Is there a way to somehow catch and read the standard output of an already running process on windows7 64bit? thanks!
0
votes
1answer
121 views

.NET Console StandardOutput does not return input “question”

I am trying to completely intercept a console application, that is, grabbing it's output, and inserting the input. So far, I can pretty much grab the output, and input is completely perfect. However, ...
0
votes
2answers
120 views

RedirectStandardOutput when the main application exits using F#

Assume the following code: let sw = new StreamWriter("out.txt", false) sw.AutoFlush <- true let proc = new Process() proc.StartInfo.FileName <- path proc.StartInfo.RedirectStandardOutput <- ...
0
votes
1answer
172 views

Help embedding FSI

Starting here - Embedding F# interactive - I've been trying to embed FSI in my application. However, I'm getting weird stuff back from StandardOutput. for example, in standard FSI, if I send this: ...
0
votes
0answers
112 views

Use Data from Process's RedirectStandardOutput Callback

In my c# console app's Main() function, I create a process, and redirect the standard output to an event handler. I want to make a function for GetPlayers() which will issue the command "playerlist" ...
0
votes
1answer
164 views

Copy and Redirecting System.err Stream

I am currently using java.util.logger in my application. It sends its output to System.err. I need it to continue to do this, but I also need to send that output to something else. Is there a way to ...
0
votes
1answer
107 views

I want both .RedirectStandardOutput = true/false

//by this code i want the batch file which is going to be executed will show the output on shell screen which i got by RedirectStandardOutput = false; but i also want at that same time output should ...
0
votes
2answers
376 views

Capture and display console output at the same time

MSDN states that it is possible in .NET to capture the output of a process and display it in the console window at the same time. Normally when you set StartInfo.RedirectStandardOutput = true; the ...
0
votes
4answers
4k views

Sending input/getting output from a console application (C#/WinForms)

I have a form with 3 controls: A textbox for the user to enter commands to send to a console application, A button to confirm the commands to be sent and A read-only textbox to display the output ...
0
votes
1answer
649 views

Process.Start fails when attempting to redirect the output

I've been working on automating our build processes and wanted to come up with a painless way to run unit tests on a regular basis. To that end I've thrown together a simple app that examines the ...
0
votes
2answers
740 views

Monitor process standard output that does not necessarily use CR/LF

My application periodically starts console programs with process.start. I need to monitor the output of the programs in "realtime". For example, the program writes the following text to the console: ...