读取正在运行的进程的文件版本
我正在收集有关正在运行的进程的信息(例如 CPU 和 RAM 使用情况)。现在我想通过进程的 PID 或进程名称来获取进程的版本号。我该怎么做?
I'm collecting information about running processes (like CPU- and RAM usage). Now I want to get the version number of a process via its PID or process name. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
版本号假设您确定了 PID 后面的 exe 及其路径(以便调用
FileGetVersion()
与它)。此主题讨论如何做到这一点,并提出 以下脚本:
The version number suppose you determine the exe and its path behind the PID (in order to call
FileGetVersion()
with it).This thread discuss how to do that, and propose the following script: