Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 windbg 中找到应用程序的安装路径?
考虑一下,我有一个转储。我需要使用 windbg 从转储中知道该应用程序的安装路径。
输入lmvm myApp将显示很多与您的应用相关的内容,您想要的是图像路径,例如:
lmvm myApp
输出
.... Image path: C:\AppPath\myApp.exe ....
运行 lmvm EXENAME。例如,如果应用程序名为 MyApp.exe,则运行“lmvm myapp”。
将打印的项目之一是模块的路径。