Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need to run an application from C#

Status
Not open for further replies.

pdunncs

Technical User
Jun 21, 2003
12
0
0
US
I have used

ProcessStartInfo psi = new ProcessStartInfo("cmd.exe");
psi.UseShellExecute = true;
psi.WindowStyle = ProcessWindowStlye.Normal;
Process p = Process.Start(psi);

I have cmd running in the process in the task manager, but the window does not show. Does anyone know why?

Is there some option I must choose?
I am doing this from a .aspx files, is that what's wrong?

Thanks for any help
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top