我正在尝试以我的工作角色执行控制台进程,但无论我为该进程设置什么配置,它总是在后台运行:
这些是我的控制台设置:
Process proc = new Process();
proc.StartInfo.FileName = "D:\\ZProcessing.exe" ; //console process
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.RedirectStandardOutput = true;
proc.StartInfo.RedirectStandardError = true;
proc.StartInfo.CreateNoWindow = false;
proc.StartInfo.WindowStyle = ProcessWindowStyle.Maximized;
proc.Start();