Tagged Questions
17
votes
4answers
9k views
ProcessStartInfo hanging on “WaitForExit”? Why?
I have the following code:
info = new System.Diagnostics.ProcessStartInfo("TheProgram.exe", String.Join(" ", args));
info.CreateNoWindow = true;
info.WindowStyle = ...
7
votes
3answers
925 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?
4
votes
3answers
2k views
Hanging process when run with .NET Process.Start — what's wrong?
I wrote a quick and dirty wrapper around svn.exe to retrieve some content and do something with it, but for certain inputs it occasionally and reproducibly hangs and won't finish. For example, one ...
3
votes
1answer
341 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
2k 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 ...
3
votes
1answer
1k views
Starting Firefox using Process.Start: Firefox not starting when you set Usename and Password
When I try to start Firefox using Process.Start and ProcessStartInfo (.NET) everything seems to work fine. But when I specify a username and password of another account (a member of Users), nothing ...
2
votes
1answer
58 views
Process of Shutdown.exe with multiple arguments, not working
I want to create a process which uses shutdown.exe to shut down the computer after a given time.
Here is my code:
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = ...
2
votes
2answers
138 views
ProcessStartInfo run exe in PATH envirionment variable
I'm trying to run an exe using ProcessStartInfo. The problem is I only want to specify the exe name, and add the executable path to the PATH environment variable in Windows. When I try to run my ...
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
2answers
565 views
An Interactive Console I/O Wrapper/Interceptor in C# - What is the issue?
I was trying to put together an interactive Console interceptor/wrapper in C# over the weekend, by re-mixing few code samples I've found in SO and other sites.
With what I've as of now, I'm unable ...
2
votes
1answer
537 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
358 views
perl.exe cannot be called by ProcessStartInfo
Hello:
I am trying to get the following code to work so I can call a perl script from my
c# program. I am developing using visual stdio 2008 on xp service pack3.
myProcess = new 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
55 views
How to use “<” (input redirection) with ProcessStartInfo in C#?
I have the following:
C:\temp\dowork.exe < input.txt
processing.......
complete
C:\
I try this:
processArguments = " < input.txt";
pathToExe = "C:\\temp\dowork.exe";
startInfo = new ...
1
vote
2answers
49 views
Using New Process() in C#, how can I copy the command line text to a text file?
I want to run lmutil.exe with the arguments -a, -c, and 3400@takd, then put everything that command line prompt generates into a text file. What I have below isn't working.
If I step through the ...
1
vote
4answers
98 views
Program doesn’t terminate when using processes
Using the ProcessStartInfo and Process I would like start a program (e g getdiff.exe) and then read all the output that program produces. Later I will use the data in a more constructive way put right ...
1
vote
3answers
2k views
Executing Batch File in C#
I'm trying to execute a batch file in C# but i'm not getting any luck doing it.
I've found multiple examples on the internet doing it but it is not working for me.
public void ...
1
vote
1answer
180 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
700 views
C# Open File With Associated Application passing arguments
I am trying to launch the default application registered for an extension specifying an additional argument:
ProcessStartInfo p = new ProcessStartInfo();
p.Arguments = "myargument";
p.FileName = ...
1
vote
1answer
160 views
cleartool not behaving the same between command prompt and from within a C# application
I am attempting to get the list of view privates in a particular directory from within a C# application.
I am using the function below to make that call with:
ClearCommand = "ls -r -view_only"
and ...
1
vote
2answers
505 views
C# Problem with ProcessStartInfo
I am using a ProcessStartInfo to patch a file with a text file like this (through cmd.exe):
app.exe temp.txt patch.ips
I wrote this code:
ProcessStartInfo P = new ProcessStartInfo("app.exe");
...
1
vote
1answer
1k views
Elevating privileges doesn't work with UseShellExecute=false
I want to start a child process (indeed the same, console app) with elevated privileges but with hidden window.
I do next:
var info = new ProcessStartInfo(Assembly.GetEntryAssembly().Location)
{
...
0
votes
1answer
47 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
0answers
74 views
A command-line program never finishes when run from within C#/ASP.NET
I've been reading on how to execute Win32 command-line programs from within the C# ASP.NET application, and for some reason, this code below never completes during execution, being stuck indefinitely ...
0
votes
2answers
47 views
Log to text file from Process.Start
I am starting a process using Process.Start(ProcessStartInfo). It currently brings up a console window and the output of the process is displayed there until the process completes, in which case the ...
0
votes
2answers
343 views
running msbuild programmatically
I am trying to execute msbuild programically and cant execute the following command:
string command = string.Format(@"C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe ""{0}\{1}.csproj""", ...
0
votes
5answers
123 views
Running an installer from within C#
I need to write code to download and run a program, e.g. notepad++ (npp.5.9.3.Installer.exe) this can be found on the web.
I run it with the ProcessStartInfo class. However when I normally execute ...
0
votes
0answers
115 views
ProcessStartInfo.ShellExecute affecting threads?
I have a class that's firing off threads.
Each thread runs a method that executes an executable.
When I tried to redirect the output of those executables, you have to set UseShellExecute property to ...
0
votes
0answers
125 views
ProcessStartInfo with Impersonation causes kernal32.dll error
I'm starting up an application using the ProcessStartInfo class. As an example, let's say that I'm trying start up cmd.exe and I need to start it up as a specific user so I use the following code:
...
0
votes
2answers
239 views
Problem launching FFmpeg inside C#
I'm calling FFmpeg via ProcessStartInfo inside my C# application however, I can't keep getting the error;
File for preset 'lossless_slow' not
found
Here's my C# code;
var processinfo = new ...
0
votes
2answers
203 views
How can I launch a folder whose name contains a comma, using ProcessStartInfo in C#?
I have an app that queries a database for the location of a nested folder used for a task, and opens this folder (using the ProcessStartInfo class to launch explorer.exe and pass in the folder name as ...
0
votes
1answer
326 views
Using Process.StartInfo.UserName
I have a website that has a linkbutton that opens a game :
Process game= new Process();
game.StartInfo.FileName = HttpContext.Current.Request.MapPath("~/iFarkle.exe");
...
0
votes
2answers
813 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
2answers
771 views
C# - Running a new process as User - with OUT a password?
I have a child process I spawn from my main application that needs to be run as another local user on a Windows 7 machine. I would prefer to not set a password on that user account, but it seems that ...
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 ...
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
5answers
3k views
Win32Exception: The directory name is invalid
I'm trying to run a process as a different user that has Administrator privilege in 2 different computers running Vista and their UAC enabled but in one of them I get a Win32Exception that says "The ...
0
votes
1answer
6k views
C# Start a new MailTo Process and HTML URL Encoding
I have created a new MailTo extension method for the Process class which just fills the Process with a new ProcessStartinfo which contains the required mailto arguments. I have created a method called ...