How do I write a very simple program that uses the command line to navigate to a program in the user's Program Files directory, then launches the .exe with a parameter? For example:

"C:\etc\Program Files\ProgramFolder\Program.exe C:\etc\desktop\file.spp C\etc\desktop\file.txt"

This launches a program with a certain project file and a .txt file along with it.

link|improve this question

1  
I don't understand. All known desktop OS allow you to launch programs and pass command line arguments. Please, what is your question? – David Heffernan Mar 2 '11 at 14:16
feedback

3 Answers

up vote 3 down vote accepted
ProcessStartInfo startInfo = new ProcessStartInfo();        
startInfo.FileName = "C:\etc\Program Files\ProgramFolder\Program.exe";
startInfo.Arguments = "C:\etc\desktop\file.spp C\etc\desktop\file.txt";
Process.Start(startInfo);
link|improve this answer
Boy, did I read the question wrong. Good for you! +1; – David Stratton Mar 2 '11 at 14:41
feedback

Just create a new text file, name it "go.cmd" and put the following in there:

"C:\etc\Program Files\ProgramFolder\Program.exe C:\etc\desktop\file.spp C\etc\desktop\file.txt"

Voila, you have your program!

link|improve this answer
feedback

if you want to pass full executable path and parameters the program you need is the windows command prompt.

link|improve this answer
oh i'm sorry, seemed to have left out a big piece of information(sorry). i need this program to prompt the user, asking what files they want to pass as parameters, then actually putting it into the command line – mark Mar 2 '11 at 14:17
feedback

Your Answer

 
or
required, but never shown

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