i am using this function from my web application to call exe file . when it calls .exe file every thing happens accurately, i can see it as running process in task manager proce
Have you tried setting the window style to Maximized?
ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe"); startInfo.WindowStyle = ProcessWindowStyle.Maximized; Process.Start(startInfo);