如何从 pid 获取命令行参数?
我有一个应用程序,其中包含系统上运行的另一个进程的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如何获取另一个进程的命令行?
任务管理器仅使用 NTDLL 中未记录的 API 集,而不是使用受支持的 ToolHelp API 和 PSAPI 函数。 Process Hacker 可能会做同样的事情,而且它是开源的,所以你可以看看。
How do I get the command line of another process?
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.