在 Windows 上使用 C 中的 popen 执行任务列表而不弹出 cmd.exe

发布于 2024-10-14 12:44:04 字数 686 浏览 2 评论 0 原文

大家好,感谢抽出时间。

我正在用 C 语言开发某种监控应用程序,我需要获取当前的任务列表。所以我正在使用任务列表并通过 popen(); 获取输出

ptr = popen("tasklist /V", "r");
while(1)
{
    if(fgets(temp, 255, ptr) == NULL) break;
    fputs(temp, log);
}

问题是,在几分之一秒内会弹出一个 cmd.exe 窗口,这确实令人不安,因为它将焦点切换到新窗口上,并使我的应用程序进入窗口模式而不是全屏模式。

因此,我花了几天时间寻找流行方式或 Windows 本身的方式,以在“隐藏”模式/窗口中启动该过程,但没有结果。 我已经尝试过的事情包括:

cmd.exe /c tasklist /V
start /b cmd.exe /c tasklist /V
start /min /b cmd.exe /c tasklist /V
start /min cmd.exe /c tasklist /V
tasklist > somefile

我也尝试了最后一个,所以我会从该 somefile 读取输出,但似乎任务列表强制输出到标准输出,因为虽然创建了文件,但没有写入数据。

希望您的答复,无论如何谢谢您。

Hello everybody and thanks for your time.

I'm developing some kind of monitoring application in C and I fell in need of getting the current tasks list. So I'm using tasklist and getting the output thanks to popen();

ptr = popen("tasklist /V", "r");
while(1)
{
    if(fgets(temp, 255, ptr) == NULL) break;
    fputs(temp, log);
}

The problem is that for some fractions of a second a cmd.exe window pops up and that's really disturbing, because it switches focus on that new window and it makes my application go to windowed-mode instead of fullscreen.

So, I've spent days looking on either popen ways or Windows itself ones to start that process in an 'hidden' mode/window but got no result.
Things I already tried include:

cmd.exe /c tasklist /V
start /b cmd.exe /c tasklist /V
start /min /b cmd.exe /c tasklist /V
start /min cmd.exe /c tasklist /V
tasklist > somefile

I tried last one too so I would read the output from that somefile but seems like tasklist forces output to stdout since no data is written though file is created.

Hope in your answer and thank you anyway.

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

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

发布评论

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

评论(2

放血 2024-10-21 12:44:04

您可以通过调用 CreateProcessSW_HIDE 作为 wShowWindow 字段传递28VS.85%29.aspx" rel="nofollow">STARTUPINFO 结构并在 dwCreationFlags 中包含 CREATE_NO_WINDOW

此方法有点脆弱,因为您可能会发现您的应用程序运行在具有不同输出格式的 tasklist 版本的计算机上。

如果您想要所有正在运行的进程的列表,可以调用 枚举进程

You can achieve this by calling CreateProcess passing SW_HIDE as the wShowWindow field of the STARTUPINFO struct and including CREATE_NO_WINDOW in dwCreationFlags.

This method is a little brittle because you may find your app running on a machine with a version of tasklist that has a different output format.

If you want a list of all processes that are running you can call EnumProcesses.

林空鹿饮溪 2024-10-21 12:44:04

使用 EnumProcesses 可以轻松完成任务。

此处给出了直观的示例。

Task can be easily achieved using EnumProcesses.

Intuitive example given here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文