Maxim Kogan
Maxim Kogan

Reputation: 820

WinDbg (64 bit) not giving full path with lmf command

I was using WinDbg 32-bit version for quite some time, and now that I am using the 64-bit version I have a problem - lmf is not showing the full path.

Example attaching to 32-bit iexplore.exe from WinDbg (x86):

0:027> lmf
start    end        module name
00940000 00a06000   IEXPLORE C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE
0b930000 0bdd3000   Flash10c C:\Windows\SysWow64\Macromed\Flash\Flash10c.ocx
0f860000 0fc74000   jscript9 C:\Windows\SysWOW64\jscript9.dll
5cc50000 5ccdc000   uiautomationcore C:\Windows\SysWOW64\uiautomationcore.dll
...

Example attaching to the same 32-bit iexplore.exe from WinDbg (x64):

0:021> lmf
start             end                 module name
00000000`00940000 00000000`00a06000   IEXPLORE C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE
00000000`0b930000 00000000`0bdd3000   Flash    Flash.ocx   
00000000`0f860000 00000000`0fc74000   JSCRIPT9 JSCRIPT9.dll
00000000`5cc50000 00000000`5ccdc000   UIAutomationCore UIAutomationCore.DLL
...

How can I fix this?

Upvotes: 1

Views: 533

Answers (1)

Player
Player

Reputation: 388

I observed the same behavior but then was able to see the full path after running the command

.reload -s

Can you please give this a try!

Upvotes: 3

Related Questions