Monday, July 9, 2007

How to run an "exe" from a running program

To run/invoke an exe from the running program use
System.Diagnostics.Process.Start method with input parameter as exe name with full path and any input parameter to the exe if applicatble or just "".

e.g. System.Diagnostics.Process.Start("\test.exe","")