SysChat

SysChat (http://www.syschat.com/forum.php)
-   Windows XP (http://www.syschat.com/tips-n-tricks/windows-xp/)
-   -   Windows XP dump (http://www.syschat.com/windows-xp-dump-1194.html)

William_Wilson 11-15-2006 03:56 PM

Windows XP dump
 
The windows dump is easily accessed simply with the key D in the command prompt's debug option, but you need to privide 2 other peices of information, seperated by a ':'
First is the location of the dump which is useful, for this example we are looking up information about the video card. So we will need hardware related windows information. The same address is used for nearly ALL windows dump data that is understandable.
C000

next we need an offset value, the prompt does not show us the entire dump, and for good reason, there are thousands of lines of it, since these values are in hexidecimal format. Your full video card information should be available through the values:
0040 and 0090

Detail this entire process:
1) Open a DOS prompt
start > run > "cmd"

2) type "debug"

3) type in your dump value to check for
D C000:0000
(this is only an example)

Therefore the completed values to enter into the windows debugger are:
'D C000:0040' and 'D C000:0090'

There is a little trial and error involved in finding useful data, but it is still easier in most cases to use the built in windows dump viewer as opposed to using a 3rd part app which may not be allowed access.

If there are those still using Win98, the first dump value used here, is translated into 'D C000:0010' instead.

Try it out and try using other offset values to see what you can find.


All times are GMT -4. The time now is 08:28 PM.


Copyright © 2005-2013 SysChat.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54