Tagged Questions
14
votes
4answers
3k views
ClickOnce app does not start through Process.Start(“x.abc”) with *.abc associated to ClickOnce app
I have successfully developed and deployed a ClickOnce application which registers an associated file extension, for instance *.abc. When I click on a file named x.abc or if I type x.abc from the ...
7
votes
3answers
940 views
.NET - WindowStyle = hidden vs. CreateNoWindow = true?
When I start a new process, what difference does it make if I use the
WindowStyle = hidden
or the
CreateNoWindow = true
property of the ProcessStartInfo class?
3
votes
1answer
344 views
Executing a process from .NET application without UAC prompt
I have a scenario where I need to launch an EXE from my .NET application, but I can't get around the UAC prompt that pops up. The prompt is triggered even before the other EXE is launched - probably ...
3
votes
3answers
3k views
C# - Launch Invisible Process (CreateNoWindow & WindowStyle not working?)
I have 2 programs (.exe) which I've created in .NET. We'll call them the Master and the Worker. The Master starts 1 or more Workers. The Worker will not be interacted with by the user, but it is a ...
2
votes
2answers
166 views
Interact with ffmpeg from a .NET program?
I'm trying to create a .NET wrapper for media-file conversion using ffmepg, here is what I've tried:
static void Main(string[] args)
{
if (File.Exists("sample.mp3")) File.Delete("sample.mp3");
...
2
votes
2answers
381 views
Running Latex from C#
When running latex from C# using Process.Start, I'm getting this error: "latex: A required file system path could not be retrieved." It runs fine from the command line, so I'm not sure why it ...
2
votes
1answer
282 views
Starting a process synchronously, and “streaming” the output
I'm looking at trying to start a process from F#, wait till it's finished, but also read it's output progressively.
Is this the right/best way to do it? (In my case I'm trying to execute git ...
2
votes
1answer
539 views
Starting CLI application programmatically does not work depending on arguments
I try to start plink.exe (PuTTY Link, the command line utility/version of PuTTY) from a C# application to establish an SSH reverse tunnel, but it does no longer work as soon as I pass the correct ...
2
votes
2answers
234 views
How can one specify the window title for a console application started with System.Diagnostics.Process.Start()?
I am starting a new instance of a console application from my .NET code using the Process.Start() method. I was wondering if I can specify the title of the console window hosting the spawned process. ...
2
votes
3answers
404 views
How do you run a program you don't know where the arguments start?
The subject doesn't say much cause it is not easy to question in one line.
I have to execute a few programs which I read from the registry. I have to read from a field where somebody saves the whole ...
1
vote
4answers
51 views
How to start a console application and prevent it from closing at the end?
I'm starting a shell script (.cmd) from my .NET application. I'd like the console window to remain open after the script has completed so that I can check for any errors. I'm trying with cmd.exe ...
0
votes
2answers
823 views
Process.Start Permissions Problem
I'm trying to run an external problem from C# by using Process.Start, but am running into permissions issues. When I open a command prompt normally (not as an admin) and run my commands they work ...
0
votes
1answer
220 views
git->Process->git round trip text encoding
I'm trying to write a utility to migrate code from our custom source control to git.
The 'commit' messages in the old system were added incrementally to a text file in the project path, so I'm using ...
0
votes
1answer
1k views
How do I use ProcessStartInfo to run a batch file?
But it doesn't work -meaning the java code is not executed.
Although the batch file runs fine when clicked in Windows explorer or when run in command line ..
Since this works fine when the batch file ...