The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
34 views

C# “The application has failed to start” with UseShellExecute disabled

I'm using the following code to execute external binaries with extensions that are different from .exe: ProcessStartInfo psi = new ProcessStartInfo(); psi.FileName = path; psi.Verb = "runas"; ...
2
votes
0answers
23 views

Async ProcessStartInfo : Run cmd program to show in textbox just like cmd window in real time

I am trying to run an exe program that outputs to the command box. I am redirecting the output to show in a textbox, but it seems to only show the entire results when the program is finished. I want ...
1
vote
3answers
29 views

Can I get the arguments to my application in the original form (e.g including quotes)?

I have a .Net application that take a bunch of command line arguments, process some of it, and use the rest as arguments for another application E.g. MyApp.exe foo1 App2.exe arg1 arg2 ... ...
2
votes
0answers
141 views

Execute script using sysinternals PSExec from Asp.Net Web application

I am trying to execute PSExec from my Asp.Net Web application to connect to a remote server. Somehow it gives "Access Denied Error -5" with no credentials set, and by setting the credentials in the ...
0
votes
2answers
342 views

C# ProcessStartInfo arguments

i have a process which takes some arguments, i want it to start from C#, i have tried the same arguments in shortcut and it works, on the other hand, in c# it doesnt, so here are the arguments. The ...
0
votes
2answers
144 views

Starting the node js script from command prompt programatically

I have a node js script running Socket.io implementation in my web role. The only way i could find on how to start the node js script was running it in command prompt, so i created a background task ...
0
votes
1answer
121 views

Suppress Windows Security Warning When Running 7-Zip

When trying to run the 7-Zip command line .exe from within a C# Windows service my application hangs without throwing an error. Setting breakpoints at the section below showed that the hang occurs ...
1
vote
0answers
185 views

Challenge with ProcessStartInfo Arguments ncftpget

There are several solutions posted to that explain how to pass multiple arguments to ProcessStartInfo to run a DOS command with more than one argument. None of them work in this particular case. ...
3
votes
1answer
477 views

Set Environment Variable for process

can someone help me with understanding the Environment Variable concept? In a C# program I need to call an executable. The executable will call some other executables that reside in the same folder. ...
1
vote
1answer
60 views

Why does this code not receive the complete output from an external command?

I am working on a tool to be able to find a PST on a specific drive. This code is taking the project path just because it's for testing purpose. My problem is that when I try to get the output of the ...
0
votes
1answer
71 views

How to check if the process ended and then execute the next command in C# ProcessStartInfo?

I have a piece of code that runs command line and do some stuff as beneath: ProcessStartInfo psi = new ProcessStartInfo(); psi.FileName = "CMD.EXE"; ...
0
votes
1answer
211 views

Starting Explorer with UNC Path Argument That Contains Comma Fails To Open Folder

Passing in a value with a comma in the UNC path (e.g. "\servername\Smith,John\Documents\") causes the following to start windows explorer but it opens the My Documents instead of the folder path. If I ...
0
votes
1answer
129 views

Fail to run SoX using Process in C#

I am trying to convert an MP3 file to GSM encoded WAV using SoX The C# code to execute this is: Console.WriteLine(Cfg.SoxPath); // bin/sox.exe Console.WriteLine(args); // A rather long argument var ...
1
vote
2answers
379 views

How to create a RAM Disk with imdisk and C#?

I'm trying to create a RAM Directory via imdisk in C#. Since the cmd command is something like: imdisk -a -s 512M -m X: -p "/fs:ntfs /q /y" I looked up how to process cmd commands with C# and found ...
0
votes
1answer
97 views

How can i get build/rebuild realtime output

I'm making Visual Studio package where i start devenv.exe and try to build other solution.I need to get building output in realtime, so user can see buiding progress(output), but i don't know how to ...
0
votes
2answers
455 views

Printing Files silently without opening them [duplicate]

Possible Duplicate: .NET: How to print files w/o opening them I want to print my files discreetly without opening them I've been told to do this : ProcessStartInfo psi = new ...
0
votes
1answer
2k views

How to pass command lines arguments to execute the .exe file as silent mode using process.start

I have an vb.net windows application in this application i want run another exe file in silent mode,for this first i have run this exe file in command line it is working.But i don't know how to pass ...
0
votes
1answer
418 views

process.startinfo.RedirectStandardOutput gives exception and process.waitforexit() hangs C# application

using process i am getting an exception while using process.StartInfo.RedirectStandardOutput = true; the exception is below "StandardOut has not been redirected or the process ...
1
vote
1answer
258 views

Error when start application through \Local Settings\Application Data\ in Windows 7

Simple code: ProcessStartInfo psi = new ProcessStartInfo(path); psi.UseShellExecute = false; Process.Start(psi); if path = C:\Users\Marat\AppData\Local\MyCompany\Program.exe, it's OK! but if ...
2
votes
0answers
359 views

LPR command to print pcl-file from windows service not working(Now a tray application)

I've been looking around for a while for a possible solution and explanation, but I can't find anything really. The following command is being run from a windows service. The same command does ...
3
votes
1answer
1k views

Set ProcessStartInfo.EnvironmentVariables when Verb=“runas”

I am developing a C# application. I need to create and pass variables to a new process and I am doing it using ProcessStartInfo.EnvironmentVariables. The new process must run elevated so I am using ...
0
votes
2answers
306 views

WaitForExit default browser

I'm using this code: Process p = new Process(); ProcessStartInfo si = new ProcessStartInfo(); si.UseShellExecute = true; si.FileName = Url; p = Process.Start(si); p.WaitForExit(); To open the "Url" ...
1
vote
3answers
248 views

Prevent child process from showing a shell window in c#

I'm using ffmpeg to compile videos, and I'd like to prevent it from displaying a console when performing actions. Here's how I start ffmpeg: ProcessStartInfo si = new ProcessStartInfo(); ...
0
votes
2answers
1k views

Passing arguments to ProcessStartInfo class

i want to call the command prompt command using Process.Start and then using StandardOutput i want to read using StreamReader in my application but when i run the below program, in the MessageBox i ...
1
vote
3answers
532 views

Execute tf.exe (TFS) from C# halts

I need to get the revision number from TFS, if i run tf.exe from a Process the process halts. If i run the same command from command promts it works? int revision; var repo = "path to repo" var psi ...
0
votes
0answers
116 views

Why can't my .exe ALWAYS write a file from a webservice?

This is an issue that has me pulling my hair out. TL:DR; IIS 7.5 webservice calls .exe which writes a file. Works when I navigate to the .asmx page (not in debug/cassini, actual IIS in chrome/FF) but ...
0
votes
1answer
1k views

How to pass command line arguments to batch file from c#

I want to execute a batch file from c#.net code. A batch file may take unknown number of the command line arguments. I want to pass these arguments from c# code. How this can be achieved through c#? ...
1
vote
1answer
742 views

Workaround to “Item has already been added. Key in dictionary” using the same key everytime but with a different value

Under Environment Variables for User, i have added a variable with the key called eg. TMP_VAR and value eg. C:\temp\sim When starting a new process in my C# application created in VS2010 .Net ...
1
vote
2answers
1k views

ProcessStartInfo - print output in console window AND to file (C#)

From my C# application, I am calling Process.Start(myPSI) with the following ProcessStartInfo: ProcessStartInfo startInfoSigner = new ProcessStartInfo(); startInfoSigner.CreateNoWindow = false; ...
0
votes
2answers
329 views

How can I force an ANYCPU .net app to run as 32 or 64 bit?

I have an Office Addin. It launches an app with runas=admin when it needs to set the license key in HKLM. up to Office 2007 Office is 32-bit. However Office 2010 comes in both a 32-bit or 64-bit ...
0
votes
0answers
254 views

Problems with ProcessStartInfo.workingDirectory on appharbor

I am using ProcessStartInfo.workingdirectory in my code to change the current working directory. It works fine on my local build but does not work on appharbor. I am calling a .bat file using ...
2
votes
5answers
403 views

Process.Start filename using %temp%

For some odd reaseon this code fails: p.StartInfo.FileName = @"%temp%\SSCERuntime_x86-ENU.msi"; and this code succes: p.StartInfo.FileName = ...
1
vote
4answers
1k 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 ...
3
votes
1answer
1k 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 = ...
1
vote
4answers
865 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
493 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 ...
0
votes
1answer
137 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
337 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
200 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
556 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
422 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 ...
3
votes
2answers
831 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
686 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 ...
2
votes
2answers
874 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
4k 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""", ...
3
votes
2answers
252 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 ...
0
votes
5answers
315 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
255 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 ...
2
votes
4answers
258 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 ...
0
votes
0answers
261 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: ...

1 2