gpt4 book ai didi

c# - 如何在 Windows 中通过 C# 执行 msg.exe?

转载 作者:可可西里 更新时间:2023-11-01 11:24:40 25 4
gpt4 key购买 nike

有没有办法使用 C# 显示窗口弹出消息?

我的意思是用windows的msg.exe程序可以在cmd中使用,例如:“msg * Hello

enter image description here

PD:我知道我可以改用 MessageBox.Show()。但我想知道这是否可能:(

我写了 2 种方法来做到这一点,但都没有用:

Process.Start("cmd.exe","/C msg * Hello");

和...

Process cmd = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = "cmd.exe",
Arguments = "/C msg * Hello",
UseShellExecute = false,
RedirectStandardInput = true,
RedirectStandardOutput = true,
RedirectStandardError = true,
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden
}
};
cmd.Start();

最佳答案

您是否尝试过直接添加 msg.exe?

  Process cmd = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = @"msg.exe",
Arguments = @"* /v Hello",
WorkingDirectory = Environment.SystemDirectory;
WindowStyle = ProcessWindowStyle.Normal
}
};
cmd.Start();

关于c# - 如何在 Windows 中通过 C# 执行 msg.exe?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42568808/

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