Gurus,
I am struggling with a basic function in C#. I am not a develop expert, but I want to develop a PoC for a given customer requirement. Your guidance is welcome.
I am using the following peace of code, however, it is not working as expected.
I want to open psr.exe minimized, but looks like the windows style has been ignored.
ProcessStartInfo proc = new ProcessStartInfo("psr.exe");
proc.Arguments = "/start /output ....;
proc.WindowStyle = ProcessWindowStyle.Minimized;
proc.RedirectStandardOutput = true;
proc.UseShellExecute = false;
proc.CreateNoWindow = true;
Process.Start(proc);
Thanks in advance.