gpt4 book ai didi

c# - 如何启动进程隐藏?

转载 作者:IT王子 更新时间:2023-10-29 04:36:01 30 4
gpt4 key购买 nike

我通过 ProcessStartInfo 和 process.Start() 启动控制台应用程序。我想隐藏黑色窗口。这是我的代码:

string output = "";
//Setup the Process with the ProcessStartInfo class
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "C:\\WINNT\\system32\\cmd.exe";
startInfo.UseShellExecute = false;
startInfo.RedirectStandardOutput = true;

//Start the process
Process proc = Process.Start(startInfo);

最佳答案

最后的答案是

 ProcessStartInfo psi = new ProcessStartInfo();
psi.FileName = ....
psi.RedirectStandardInput = true;
psi.RedirectStandardOutput = false;
psi.Arguments =...
psi.UseShellExecute = false;

psi.CreateNoWindow = true; // <- key line

关于c# - 如何启动进程隐藏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6857019/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com