如何从 pid 获取命令行参数?

发布于 2025-01-11 10:12:31 字数 138 浏览 0 评论 0原文

我有一个应用程序,其中包含系统上运行的另一个进程的 pid。我想获取使用 Win32 API 启动另一个进程的命令行参数。 我也浏览了所有与流程相关的函数和 PSAPI 函数,但找不到。

非常感谢您的帮助!

谢谢,

康南

I've an application which contains pid of another process running on the system. I would want to get the command line args with which the other process was launched using Win32 API.
I have gone through all process related functions and PSAPI functions too but couldn't find one.

Your help is greatly appreciated!

Thanks,

Kannan

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

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

发布评论

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

评论(1

二手情话 2025-01-18 10:12:31

如何获取另一个进程的命令行?

Win32 不会向其他进程公开进程的命令行。

...

如果您在 WMI 中环顾四周,您会发现一个 Win32_Process 对象,您瞧,它有一个 CommandLine 属性。

任务管理器仅使用 NTDLL 中未记录的 API 集,而不是使用受支持的 ToolHelp API 和 PSAPI 函数。 Process Hacker 可能会做同样的事情,而且它是开源的,所以你可以看看。

How do I get the command line of another process?

Win32 doesn’t expose a process’s command line to other processes.

...

If you look around in WMI, you’ll find a Win32_Process object, and lo and behold, it has a CommandLine property.

Task manager just uses an undocumented set of APIs in NTDLL instead of using the supported ToolHelp API and PSAPI functions. Process Hacker probably does the same and it is open source so you could look at that.

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