I can not start the process (Process.Start ()) in BackgroundWorker (i.e. when it already executes the background process).
There are no exceptions, I tried to run other exe-files - nothing works. One of them simply had to create a left file to find out that the process was actually running, but this did not happen. Those. everything says that as though the exe-schnick did not start at all.
Code:
Process p1 = new Process(); p1.StartInfo.Arguments = args; p1.StartInfo.FileName = @"f:\exe.exe"; p1.Start(); p1.WaitForExit();
Has anyone encountered this problem?