Search code examples
windbgcrash-dumpssos

Installed path of a process in windbg


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.


Solution

  • 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
    ....