BSOD fun, building this one for a VERY good friend...

G

Guest

Ill Get right to it:
DRIVER_IRQL_NOT_LESS_OR_EQUAL
STOP: 0x000000D1 (0x06BBAB80, 0x000000FF, 0x00000000, 0x81AB2053)
IDK wth the prob is. Running an old dell 4100 board, 933mhz PIII, Original
graphics card: ATi Rage 128 pro, 256mb pc133, HP Deskdirect NIC, Sound
Blaster Live, Some IBM IDE HDD 40gb. It ran just fine before, albiet a diff
hdd, though i know this one works fine. MS-DSOS 6 installed perfectly, a test
i do before putting the big stuff on. Windows XP Pro however, not so much,
has a PAGE_FAULT_IN_NON_PAGED_ AREA BSOD sometimes too, loads to the point of
the screen with "press enter to setup Windows XP" (first menu) Sometimes gets
to the lisence agreement then BSODs. Ive already tried the basics, so dont
tell me to turn off plug n play or remove all but necessary hardware, ect.
Thanks for any help.
 
R

Ron Martell

nova12gauge said:
Ill Get right to it:
DRIVER_IRQL_NOT_LESS_OR_EQUAL
STOP: 0x000000D1 (0x06BBAB80, 0x000000FF, 0x00000000, 0x81AB2053)
IDK wth the prob is. Running an old dell 4100 board, 933mhz PIII, Original
graphics card: ATi Rage 128 pro, 256mb pc133, HP Deskdirect NIC, Sound
Blaster Live, Some IBM IDE HDD 40gb. It ran just fine before, albiet a diff
hdd, though i know this one works fine. MS-DSOS 6 installed perfectly, a test
i do before putting the big stuff on. Windows XP Pro however, not so much,
has a PAGE_FAULT_IN_NON_PAGED_ AREA BSOD sometimes too, loads to the point of
the screen with "press enter to setup Windows XP" (first menu) Sometimes gets
to the lisence agreement then BSODs. Ive already tried the basics, so dont
tell me to turn off plug n play or remove all but necessary hardware, ect.
Thanks for any help.

This error message originated with the device driver that is using
memory address 0x81AB2053 (parameter 4 value for this particular error
code).

Identifying the cause of STOP errors using PSTAT & Excel

Many times when a STOP error occurs the information provided does not
specifically identify the application, device driver, or other
component file where the error occurred. However the 4 parameters
associated with the STOP (bugcheck) code will very often include one
that is the address where the error occurred. You first need to look
up the detailed information about the specific STOP code in order to
determine if the address is included and if so which of the 4
parameters has the address.

You can identify the meaning of each of the parameters for your
specific STOP code at:
http://msdn2.microsoft.com/en-us/library/ms789516.aspx

The second step in the procedure is to identify the addresses that
each active process is being loaded at. The PSTAT utility will
provide this information. On some systems the PSTAT utility may
already be present. Check this by opening a Command Prompt window
(Start - Run - CMD) and entering the following command:

PSTAT /?

If PSTAT is not on your computer you can download it free from
Microsoft. The download is called "Windows XP Service Pack 2 Support
Tools" and it is available from
http://www.microsoft.com/downloads/...76-9BB9-4126-9761-BA8011FABF38&displaylang=en
With PSTAT installed on your computer the next step is to open a
Command Prompt window again (Start - Run - CMD) and generate a report
with PSTAT. Because you need to copy part of the information from
this report (and only part) it is best to create the report as a text
file. In the Command Prompt window enter the following command:

PSTAT > C:\JUNK\PSTAT.TXT

You may change C:\JUNK\ to whatever drive and folder that you want to
save the report into.

Now open the saved file in Notepad. Start - Run - NOTEPAD
C:\JUNK\PSTAT.TXT

Scroll down the file, about 80% of the way to the end of the file and
you will find a head line:

ModuleName Load Addr Code Data Paged LinkDate

It is the information from this line to the end of the file that we
want to copy from this file and save as a separate file. Select the
block of text and copy it to the clipboard. Open a new notepad window
and paste the clipboard contents into it. Save this file under a
different name. I use PSTAT2.TXT and put it into the same C:\JUNK
folder.

Now launch Microsoft Excel and use File - Open to bring the PSTAT2.TXT
file into Excel. Excel will automatically parse the file into
columns. Once this is done use DATA - SORT to sort the entire
spreadsheet based on the value in Column B (Load Addr).

It is now a simple task to read down the addresses until you find the
highest value that is less than the address where the error occurred.
That module (name in column A) is the prime suspect for the cause of
your error.


Good luck


Ron Martell Duncan B.C. Canada
--
Microsoft MVP (1997 - 2008)
On-Line Help Computer Service
http://onlinehelp.bc.ca

"Anyone who thinks that they are too small to make a difference
has never been in bed with a mosquito."
 
R

RJK

IBM hd ...40gb suggests it's got some age to it. How about running hd
manufacturers diagnostics software, or even letting Steve Gibsons Spinrite
on the hard-disk. http//www.grc.com

regards, Richard
 
Top