如何使程序从 C# 中的控制台应用程序在后台运行

发布于 2024-12-07 13:52:35 字数 214 浏览 2 评论 0原文

您好,我目前正在开发一个运行 .bat 文件的控制台应用程序,当程序启动时,它会作为我的窗口上的主框弹出,并且由于它每分钟运行几次,这可能会有点烦人当我运行这个命令时......

System.Diagnostics.Process.Start(@"newmessage1.bat");

有没有办法让 .bat cmd 窗口在某种隐藏状态下运行?

Hi there I am currently working on a Console Application that run's a .bat file and when the program starts it pops up as the main box on my window and as this is running several times a min, this can get a little annoying is there any way when I run this command...

System.Diagnostics.Process.Start(@"newmessage1.bat");

is there a way of making the .bat cmd window running in a kinda hidden state?

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

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

发布评论

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

评论(2

淡看悲欢离合 2024-12-14 13:52:35

您可以使用 CreateNoWindow< /code>UseShellExecute 属性:

var psi = new ProcessStartInfo
{
    FileName = "newmessage1.bat",
    CreateNoWindow = true,
    UseShellExecute = false
};
Process.Start(psi);

You could play around a little with the CreateNoWindow and UseShellExecute properties:

var psi = new ProcessStartInfo
{
    FileName = "newmessage1.bat",
    CreateNoWindow = true,
    UseShellExecute = false
};
Process.Start(psi);
英雄似剑 2024-12-14 13:52:35

使用 ProcessStartInfo.CreateNoWindow< /a> 属性。

Process myProcess = new Process();
myProcess.StartInfo.UseShellExecute = false;
myProcess.StartInfo.CreateNoWindow = true;
myProcess.StartInfo.FileName = @"newmessage1.bat";
myProcess.Start();

Use the ProcessStartInfo.CreateNoWindow property.

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