将命令注入基于命令行的进程

发布于 2024-11-27 12:35:15 字数 147 浏览 0 评论 0原文

目前我正在从事服务器管理工​​作。服务器是一个命令行应用程序。服务器通过Process类运行,并且窗口是隐藏的。我一直在试图找出一种将命令注入其中(全部保存)而不显示服务器窗口的方法。我尝试使用 StreamWriter 和进程的标准输入,但这不起作用。有谁知道如何让它发挥作用?

Currently I am working on a server manager. The server is a command line application. The server is ran through the Process class, and the window is hidden. I've been trying to figure out a way to inject commands into it (save-all), without showing the server window. I have tried to use StreamWriter and the Process's Standard Input, but that didn't work. Does anyone know how to get this to work?

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

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

发布评论

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

评论(1

心病无药医 2024-12-04 12:35:15

为了能够重定向进程的任何标准 I/O 流,您需要禁用 shell 执行。你可能没有。你应该能够这样做:

var process = new Process
{
    StartInfo = new ProcessStartInfo
    {
        FileName = Environment.GetEnvironmentVariable("COMSPEC"),
        RedirectStandardInput = true,
        UseShellExecute = false,
    },
};
if (process.Start())
{
    process.StandardInput.WriteLine("echo FOOBAR!");
    process.WaitForExit(3000);
    process.StandardInput.WriteLine("exit");
    process.WaitForExit();
}

To be able to redirect any of the standard I/O streams of a process, you need to disable shell execute. You probably didn't. You should be able to do it like this:

var process = new Process
{
    StartInfo = new ProcessStartInfo
    {
        FileName = Environment.GetEnvironmentVariable("COMSPEC"),
        RedirectStandardInput = true,
        UseShellExecute = false,
    },
};
if (process.Start())
{
    process.StandardInput.WriteLine("echo FOOBAR!");
    process.WaitForExit(3000);
    process.StandardInput.WriteLine("exit");
    process.WaitForExit();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文