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.
> 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 >
> 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.
“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?
“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 >