Process.Start -(初学者)帮助

发布于 2024-11-16 07:34:58 字数 204 浏览 3 评论 0原文

我有一个用 C++ 编写的 .exe 文件。我用过;

Process.Start("E:\\cmdf.exe"); 

从 C# 执行代码。

现在我需要:

  1. 隐藏命令提示符
  2. 然后找到一种方法来停止命令提示符(如关闭应用程序)

我该怎么做?

I have a .exe file written in C++. i have used;

Process.Start("E:\\cmdf.exe"); 

to execute the code from C#.

Now i need to:

  1. hide the command prompt
  2. Then to find a way to stop the command prompt (as in closing the application)

How do i do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

吻泪 2024-11-23 07:34:58

要在没有命令窗口的情况下启动,请尝试以下操作:

var exePath = @"E:\cmdf.exe";
var p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.FileName = exePath;
p.Start();

然后结束进程:

p.Kill();

To start without command window try this:

var exePath = @"E:\cmdf.exe";
var p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.FileName = exePath;
p.Start();

Then to end the process:

p.Kill();
指尖凝香 2024-11-23 07:34:58

要添加到其他答案:

还有 WindowStyle 属性,您可以将其设置为 WindowStyle.Hidden

To add to the other answers:

There is also the WindowStyle property which you can set to WindowStyle.Hidden.

扮仙女 2024-11-23 07:34:58

这是隐藏命令提示符的代码,它对我有用,希望它也能帮助您。

  Process p = new Process();
        StreamReader sr;
        StreamReader se;
        StreamWriter sw;

        ProcessStartInfo psi = new ProcessStartInfo(@"bar.exe");
        psi.UseShellExecute = false;
        psi.RedirectStandardOutput = true;
        psi.RedirectStandardError = true;
        psi.RedirectStandardInput = true;
        psi.CreateNoWindow = true;
        p.StartInfo = psi;
        p.Start();

This is the code to Hide the command prompt it works for me hope it will help you too.

  Process p = new Process();
        StreamReader sr;
        StreamReader se;
        StreamWriter sw;

        ProcessStartInfo psi = new ProcessStartInfo(@"bar.exe");
        psi.UseShellExecute = false;
        psi.RedirectStandardOutput = true;
        psi.RedirectStandardError = true;
        psi.RedirectStandardInput = true;
        psi.CreateNoWindow = true;
        p.StartInfo = psi;
        p.Start();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文