I need to start an .exe via my web application, it works on my local machine But it does not work on server.
I am using windows server 2008 R2 Enterprise and here is my code
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = @"C:\hkLog\FirmwareUpdaterGUI.exe";
startInfo.WindowStyle = ProcessWindowStyle.Minimized;
startInfo.Arguments = list;
Process.Start(startInfo);
Thanks in advance,