Information on commands and additional interesting and informative BSOD threads -
Windbg commands that I find most useful -
http://www.sevenforums.com/671427-post3.html
Code:
[FONT=Lucida Console] !analyze -v; kv; k; r; lmnt; lmntsm
!for_each_module .echo @#ModuleIndex : @#Base @#End @#ModuleName @#ImageName @#LoadedImageName
!for_each_module .echo @#ModuleName fver = @#FileVersion pver = @#ProductVersion[/FONT]
The first is the "usual" set of stringed commands that I use, including -
k = stack text of given thread
kv = " " + frame pointer omission (FPO) information
r = registers (I don't usually use much, if any info from this command
lmnt -
--
lm = loaded driver listing
--
n = displays image name
--
t = displays timestamp info
--
lmnt displays the loaded driver list in order of memory addresses
lmntsm -
-
lmnt - see above
--
sm = Sorts the display by module name instead of by the start addresSorts the display by module name instead of by the start address
!for each module - displays various info for each module, including current and previous version numbers
Informative threads -->
http://www.techsupportforum.com/f217/solved-symantec-endpoint-11-0x7e-vista-x64-bsod-370804.html
John
`