1
Reply

How to run exe on server

sangmesh sangulage

sangmesh sangulage

Dec 14 2011 12:53 AM
3.7k
Hi friends,
I want to run exe on server but it is running in background.it is not showing me the exe on desktop i want to show my exe on desktop.
I am writing on web page lode
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "Myapplication.exe";
startInfo.WindowStyle = ProcessWindowStyle.maximized;
Process process = new Process();
process.StartInfo = startInfo;
process.Start();
Please let me know how can i do it.



Answers (1)