Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 = ...
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?
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
100 views

How to pass WindowState from desktop shortcut into WPF app?

How can I control the initial WindowState (Normal, Minimized, Maximized) of a WPF main window from a desktop shortcut? The "Run:" combobox of the shortcut's properties dialog let's me choose between ...
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 ...
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
60 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
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
2answers
567 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
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
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
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 ...
1
vote
2answers
51 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
182 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
708 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
162 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
506 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
29 views

Start Process in Series and Parallel

I have a problem here..... I have a List of ProcessStartInfo as List<ProcessStartInfo> I want to Start processes in Series i.e if i starts first process then second process in the List ...
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
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
0answers
48 views

System.Diagnostics.Process not accepting credentials

I am trying to execute a batch file using the Process class. This code is in the middle of a larger section of code where I am using LogonUser() and WindowsIdentity.Impersonate() to impersonate the ...
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
0answers
66 views

.net ProcessStartInfo passing arguments as variables

I am trying to execute a bat file via a .Net console app, but I can tell that the bat file is not accepting the parameters even though I think I have the correct format in passing them. What am I ...
0
votes
2answers
72 views

What's the difference between “print” and “printo” verbs when starting a process?

I suspect this may apply to multiple programming languages, but in this context I am referring to .NET. When I use System.Diagnostics.Process.Start, I can include, as an argument, a ...
0
votes
2answers
358 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
126 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
242 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
205 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
327 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
1answer
133 views

ProcessStartInfo Browser Output

I have tried everything I can think of and every code sample imaginable but I cannot get any type of output using Process.Start when opening a browser. I have tried just looking at error output and ...
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
2answers
774 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
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 ...
0
votes
3answers
2k views

System.Diagnostics.Process issue with WorkingDirectory

I am using a thrid party software tool (command line tool) to merge PDF files together. Using C# I am attempting to use System.Diagnostics.Process to run the executable but I am coming up with a few ...
0
votes
3answers
305 views

taskkill Mysql from .ASPX — Permission Problems?

Our mysql instance occaisionally locks up during backups. Currently we must VPN into the corporate network (to obtain work I.P.), remote desktop into the server, open the task manager, and manually ...
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 ...

1 2