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.
Loading
vikas kharePosted Dec 14, 2011, 9:52 PM
If you are trying to login in remote server, then you need to login that server using this command.
mstsc -v:serverIP /F -console
Because there is different session created on server for different login.
So try using this.
Hope this helps you.
Thanks
Vikas Khare