process.start Questions

3

Solved

I'm successfully using System.Diagnostics.Process.Start() to start my external mono executable on windows. However it fails on mac. I'm not getting any error, simply nothing at all happens. I trie...
Synchrotron asked 16/3, 2013 at 17:56

2

Solved

I want to start a program with C# (could use Process.Start()). Then my program should wait until the started program is closed, before it continues. How do I do this?
Synchronize asked 4/2, 2013 at 17:45

6

Solved

In our team we've faced with the choice: we need to call external third party code and process its output from our C# code. The third party code available in two forms: set of dlls and single exe ...
Seafood asked 24/1, 2013 at 11:20

1

I'm trying to run a cmd line application from c# using Process.Start(ProcessStartInfo); The problem is, the cmd line application is a matlab standalone .exe and has optional arguments meaning that...
Rosenberger asked 15/1, 2013 at 14:19

7

Solved

I've been searching and experimenting for a while with this, but I have had no luck. I am trying to make a console program to automate some tasks that I couldn't quite do with a BAT file. I want t...
Habited asked 3/11, 2011 at 23:35

3

Solved

UnhandledException: System.ComponentModel.Win32Exception: No application is associated with the specified file for this operation at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStart...
Moberg asked 14/4, 2010 at 0:51

2

Solved

(There is a very similar topic that never got solved: here) We have a big app running on several clients, but recently some of my code stopped working. Adding some debug code I found out the code ...
Cigarette asked 18/4, 2011 at 11:46

4

I run an external program from ASP.NET: var process = new Process(); var startInfo = process.StartInfo; startInfo.FileName = filePath; startInfo.Arguments = arguments; startInfo.UseShellExecute ...
Java asked 11/5, 2010 at 15:19

3

Solved

When I try to do Process.Start("echo", "%cd%") it raises a System.ComponentModel.Win32Exception: The system cannot find the file specified. When I do this manually in cmd it just works like it shou...
Ethicize asked 22/8, 2011 at 9:35

2

Solved

I'm attempting to create a process like so: var psi = new ProcessStartInfo { FileName = @"%red_root%\bin\texturepreviewer.exe", UseShellExecute = true }; var process = Process.Start(psi); proce...
Tedder asked 8/12, 2010 at 14:35

1

Solved

I'm trying to make a simple application in C# that allows me to kill and enable explorer.exe. I need such program so that I can play Age of Empires 2 properly, because it does not like explorer.exe...
Shulman asked 25/11, 2010 at 16:52

2

Solved

My users can attach documents to various entities in the application. Of course, if user A attaches a .TIFF file, user B may not have a viewer for that type of file. So I'd like to be able to bri...
Rich asked 19/5, 2009 at 17:16

3

Solved

Background I have a Windows service that uses various third-party DLLs to perform work on PDF files. These operations can use quite a bit of system resources, and occasionally seem to suffer from m...
Montana asked 2/10, 2009 at 16:3

© 2022 - 2024 — McMap. All rights reserved.