如何使用Python列出进程加载的所有dll?
我想列出进程加载的所有 dll,如下所示:
如何获取信息Windows 上的 Python?
I want to list all the dlls loaded by a process, like this:
How could I get the information with Python on Windows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用包 psutil 可以获得便携式解决方案! :-)
Using the package psutil it is possible to get a portable solution! :-)
使用listdlls:
Using listdlls:
已安装 pywin32 时,请执行以下
操作:使用
win32api.GetFileVersionInfo()
,.EnumResourceNames()
... 在 dll 路径上获取 dll 属性数据。With pywin32 already installed do like:
Use functions like
win32api.GetFileVersionInfo()
,.EnumResourceNames()
... on the dll paths to get dll attribute data.