vote up 1 vote down star

Is it possible to start another EXE in Managed Code? At this time, all I can do is use:

System.Diagnostics.Process.Start(exeName)

Is there another way to call another EXE within the same project?

Thanks! JFV

flag

76% accept rate

4 Answers

vote up 7 vote down check
            Process process = new Process();
            process.StartInfo.FileName = "c:\test.exe";
            process.StartInfo.Arguments = "/e /s";
            process.Start();

This way you get a lot of options for your process such as process.WaitForExit() so you may not run asynchronously your process, etc.

link|flag
I use this method for a few testing projects we have set up. – chills42 Apr 10 at 12:29
Thanks! I will check this out! – JFV Apr 10 at 19:25
vote up 0 vote down

Relative paths use the CurrentDirectory, a user can easily change this when launching your app and it can change during execution. I'd recommend using something you can be certain about:

There's a lot of different ways to get your executable's path:

AppDomain.CurrentDomain.BaseDirectory

Assembly.GetExecutingAssembly().Location
link|flag
vote up 3 vote down

You could use Assembly.ExecuteAssembly if it is managed. This will execute the main entry point in your current process instead of spinning up a new process.

link|flag
vote up 1 vote down

Use relative paths and it should work.

link|flag

Your Answer

Get an OpenID
or

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