Running an exe from another application

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to start execution of an exe in a command line fashion from a Windows
application. Is there a way to do this using the framework, or do I have to
instantiate the WScript.Shell somehow?
 
Harry Keck said:
I need to start execution of an exe in a command line fashion from a Windows
application. Is there a way to do this using the framework, or do I have to
instantiate the WScript.Shell somehow?

Check out System.Diagnostics.Process - it has some Start() methods, for
example.

-- Barry
 
Back
Top