list of processes in a crashdump file?

Hi,

I have a crashdump file, and load it into Windbg. How can I obtain the
list of processes in the dump file?

I tried .tlist command, but it seems to list only processes in current
machine, not in the dump file.

Similarly, I also want to get the list of modules in the dump file but
apparently “lm” command only returns the list of modules in my
machine, but not get that from the dump file.

Thanks,
Jun

how abt !process 0 7
or .process for user mode

On Wed, Dec 2, 2009 at 4:16 PM, Jun Koi wrote:

> Hi,
>
> I have a crashdump file, and load it into Windbg. How can I obtain the
> list of processes in the dump file?
>
> I tried .tlist command, but it seems to list only processes in current
> machine, not in the dump file.
>
> Similarly, I also want to get the list of modules in the dump file but
> apparently “lm” command only returns the list of modules in my
> machine, but not get that from the dump file.
>
> Thanks,
> Jun
>
> —
> WINDBG is sponsored by OSR
>
> For our schedule of WDF, WDM, debugging and other seminars visit:
> http://www.osr.com/seminars
>
> To unsubscribe, visit the List Server section of OSR Online at
> http://www.osronline.com/page.cfm?name=ListServer
>



- amitr0

> I tried .tlist command, but it seems to list only processes in current

machine, not in the dump file.

Use !process 0 0

Similarly, I also want to get the list of modules in the dump file but
apparently “lm” command only returns the list of modules in my
machine, but not get that from the dump file.

lm definitely shows the loaded modules on the target machine, I use it all
of the time.

-scott


Scott Noone
Consulting Associate
OSR Open Systems Resources, Inc.
http://www.osronline.com

“Jun Koi” wrote in message news:xxxxx@windbg…
> Hi,
>
> I have a crashdump file, and load it into Windbg. How can I obtain the
> list of processes in the dump file?
>
> I tried .tlist command, but it seems to list only processes in current
> machine, not in the dump file.
>
> Similarly, I also want to get the list of modules in the dump file but
> apparently “lm” command only returns the list of modules in my
> machine, but not get that from the dump file.
>
> Thanks,
> Jun
>

On Wed, Dec 2, 2009 at 11:47 PM, Scott Noone wrote:
>> I tried .tlist command, but it seems to list only processes in current
>> machine, not in the dump file.
>
> Use !process 0 0
>

This works greatly, thanks!

>> Similarly, I also want to get the list of modules in the dump file but
>> apparently “lm” command only returns the list of modules in my
>> machine, but not get that from the dump file.
>
> lm definitely shows the loaded modules on the target machine, I use it all
> of the time.

if so, which command shows the loaded modules in the dump file?

Thanks a lot,
Jun

> if so, which command shows the loaded modules in the dump file?

By target I meant the dump file, lm shows the modules loaded there and not
on the host machine.

-scott


Scott Noone
Consulting Associate
OSR Open Systems Resources, Inc.
http://www.osronline.com

“Jun Koi” wrote in message news:xxxxx@windbg…
> On Wed, Dec 2, 2009 at 11:47 PM, Scott Noone wrote:
>>> I tried .tlist command, but it seems to list only processes in current
>>> machine, not in the dump file.
>>
>> Use !process 0 0
>>
>
> This works greatly, thanks!
>
>>> Similarly, I also want to get the list of modules in the dump file but
>>> apparently “lm” command only returns the list of modules in my
>>> machine, but not get that from the dump file.
>>
>> lm definitely shows the loaded modules on the target machine, I use it
>> all
>> of the time.
>
> if so, which command shows the loaded modules in the dump file?
>
> Thanks a lot,
> Jun
>