문제

How do I find the installed path of an application from windbg?

Consider, I got a dump . I need to know the installed path of that application from the dump using windbg.

도움이 되었습니까?

해결책

Entering lmvm myApp will display a lot of stuff relevant to your app, the one you want is Image Path e.g.:

lmvm myApp

outputs

....
Image path: C:\AppPath\myApp.exe
....

다른 팁

Run lmvm EXENAME. For instance, if the app is called MyApp.exe, run 'lmvm myapp'.

One of the items that will be printed is the module's path.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top