Hemant
Hemant

Reputation: 1343

how to enlist the module of any exe attached to debugger

I'm actually debugging the IE and want to enlist all the module. My preference is all function contain in MSHTML.dll , but I'm not able to do that.

Things done by me as follow:-

I've attached debugger to IE and then typed the following command

x *!

and I got list of pdb files but no mshtml.dll

I'll really appreciate any help or guidance all you can give.

Upvotes: 0

Views: 155

Answers (1)

Sebastian
Sebastian

Reputation: 3874

Modules are dlls/exe files and to list them you should rather use lm command. For instance to check if the mshtml.dll is loaded with valid symbols issue:

lmmv mshtml

If no symbol files were found you will need to get them. For example to get symbols fom ms public servers run:

.symfix
.reload

Finally to list all symbols included the mshtml use:

x mshtml!*

Upvotes: 2

Related Questions