我正在从 winforms 应用程序中运行 cmd.exe 进程。但是我似乎无法让控制台窗口在后台运行(即不显示在屏幕上)
这是我的代码
ProcessStartInfo si = new ProcessStartInfo("cmd.exe");
si.RedirectStandardInput = true;
si.RedirectStandardOutput = true;
si.UseShellExecute = false;
si.Arguments = "/c";
si.WindowStyle = ProcessWindowStyle.Hidden;
Process p = Process.Start(si);