Tagged Questions

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?
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
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
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 ...
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 ...
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
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
47 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
64 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
69 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
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
1answer
131 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
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
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 ...