I need to pass more than one command line argument via c# for a process called handle.exe: http://www.google.com.mt/search?sourceid=chrome&ie=UTF-8&q=handle.exe

First, I need to run the executable file via ADMINISTRATOR permissions. This post has helped me achieve just that: http://stackoverflow.com/questions/667381/programatically-run-cmd-exe-as-adminstrator-in-vista-c

But then comes the next problem of calling the actual line arguments such as "-p explore"

How can I specify the command line arguments together, or maybe consecutively?

Current code is as follows:

        Process p = new Process();
        ProcessStartInfo processStartInfo = new ProcessStartInfo("filePath");
        processStartInfo.CreateNoWindow = true;
        processStartInfo.UseShellExecute = false;
        processStartInfo.RedirectStandardOutput = true;
        processStartInfo.RedirectStandardInput = true;
        processStartInfo.Verb = "runas";
        processStartInfo.Arguments = "/env /user:" + "Administrator" + " cmd";

        p.StartInfo = processStartInfo;
        p.Start();
        string output = p.StandardOutput.ReadToEnd();
        p.WaitForExit();
        Console.WriteLine(output);      

Thanks

link|improve this question

0% accept rate
Doesn't the main function usually take in an collection of text from when you run the application. If so can't you just parse through that? – percent20 Apr 25 '10 at 21:59
the problem is that I am adding them, rather than retrieving them – angrybird Apr 25 '10 at 22:07
What is wrong with the code you have? – Lasse V. Karlsen Apr 27 '10 at 11:43
I need to get the data which -p explore gives me, but the above code does not return it because I have to set the initial parameters to admin rights. – angrybird Apr 28 '10 at 1:35
feedback

3 Answers

I believe the answer you are looking for is right out of the Runas command documentation.

runas /user:user@domain.microsoft.com "notepad my_file.txt" 

It appears that the last argument to the runas command is the command that is being run along with any arguments. The key is to use quotes to group the actual command executable with it's arguments so that the values are not seen as separate arguments to the runas command but instead is issued as a single command on it's own.

So in your example you might want to do the following.

processStartInfo.Arguments = "/env /user:" + "Administrator" + " \"cmd -p explore\"";
link|improve this answer
I tried this one, I also tried adding cmd parameters such as /k (continue execution), but still nothing works. – angrybird Apr 28 '10 at 1:34
feedback

You can run the process using the UseShellExecute command and pass in the username and password

http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.useshellexecute%28v=VS.100%29.aspx

http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.username%28v=VS.100%29.aspx

Although you will be storing the username and password somewhere.

link|improve this answer
feedback

If you are trying to run a process with elevated permissions, there may be a better way than calling runas.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.