如何将 Ctrl+C 信号发送到使用 CreateNoWindow 标志创建的控制台进程
如果我使用 Process.Kill(),该进程将被终止。但是,我想终止它。
我尝试使用 GenerateConsoleCtrlEvent(ConsoleCtrlEvent.CTRL_C, Process.Id)
API,但没有成功。
如果我将 False
设置为 CreateNoWindow
标志,当我从键盘发送 Ctrl+C 时,程序会显示“捕获信号:2;终止”
。因此它等待“2”信号来终止。
我怎样才能做到这一点?
If I use Process.Kill()
, the process is killed. However, I would like to terminate it.
I tried with GenerateConsoleCtrlEvent(ConsoleCtrlEvent.CTRL_C, Process.Id)
API, without success.
If I set False
to CreateNoWindow
flag, when I send Ctrl+C from keyboard, the program says "Caught signal: 2; Terminating"
. So it wait a "2" signal to terminate.
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个解决方案。我将尝试为您描述它:
当您编写包装整个控制台的应用程序时,控制台由于某种原因无法接收控制代码(问题去微软),但控制台仍然可以接收这些事件。如何?来自外部应用程序。
这是 cas.exe 的代码
以及如何使用它:
这里,
CommandExecutor
是我围绕 Process 的线程包装器。pr.Id 是之前开始使用 Process 控制台的 ID(我们需要在其中发送 CTRL_C 或其他事件)
There is a solution. I will try to describe it for you:
When you write the application which wraps the entire console - console into can't receive control codes for some reason (question going to Microsoft), but the console can still receive those events. How? From an external app.
This is the code for cas.exe
and how to use it:
Here,
CommandExecutor
is my threaded wrapper around Process.pr.Id is the ID of previously started using Process console (where we need to send our CTRL_C or other events