I want to have my program execute a bunch of commands on load-time and this is in C# btw, but it's a console program, how can I do that?

link|improve this question

3  
Can you be a little more specific here? It sounds like you are trying to execute external commands from within your program, is that true? – jheddings Nov 14 '09 at 19:48
Could you elaborate a little more. I want to have my program execute a bunch of commands is quite confusing. The title and the tags are not helping either. – Darin Dimitrov Nov 14 '09 at 19:50
feedback

1 Answer

up vote 2 down vote accepted

If you are trying to execute external applications from within your C# console application, see the ProcessStartInfo and Process class.

Example:

Process.Start("IExplore.exe", "www.google.com");

// -- OR --
ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
startInfo.WindowStyle = ProcessWindowStyle.Maximized;
startInfo.Arguments = "www.google.com";
Process.Start(startInfo);
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.