System.Diagnostics.Process.Start() cannot start process when called from Windows service
问题 I am trying to start an external process from a .NET Windows service. In the past I have used the Process.Start() overload that takes the executable path and a command line string. This works. But now I would like to start the process and have it run in the context of a particular user. So I call this version of Start() public static Process Start( string fileName, string userName, SecureString password, string domain) However, when I call the method, the application I am trying to run