Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
263 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 ...
1
vote
0answers
27 views

WaitForExit for programs of type MS Word - process already started

In my app I want to open *.rtf file, and than wait for it to be closed. Often user has MS Word to open *.rtf files and here is the problem. Code below works, but only when "WINWORD" process has not ...
1
vote
4answers
3k views

Visual C# GUI stops responding when process.WaitForExit(); is used

I am creating a GUI application using Visual C# 2005 (net framework 2). I use the following code to start a process: Process process = new Process(); process.StartInfo = new ...
1
vote
3answers
845 views

Wait for a remote process to finish in .net

We all know and love Process.WaitForExit(). Given a pid of a process on a remote machine (created by WMI/psexec), how do I wait for it to end?
0
votes
1answer
121 views

Process.WaitForExit hangs while another installation is run

Good day! I'm working on installer, which installs additional dependencies for my software using Process.Start. foreach dependency: var process = System.Diagnostics.Process.Start(processStartInfo); ...
0
votes
2answers
427 views

How to use Process.WaitForExit

I'm calling a 3rd part app which 'sometimes' works in VB.NET (it's a self-hosted WCF). But sometimes the 3rd party app will hang forever, so I've added a 90-second timer to it. Problem is, how do I ...
0
votes
2answers
424 views

Using Process in C#

I have a section in my code where I call a batch file and give it certain arguments. This batch file calls another batch file and so on. The entire process takes about 45 minutes to complete. I also ...
-1
votes
2answers
104 views

Runtime Error when executing WaitForExit()

I'm trying to execute the following code, but the debugger is failing at myProcess.WaitForExit() Sub BtnNowClick(sender As Object, e As EventArgs) Dim myProcess As Process Dim processFile ...