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
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