Where can I find out what a given stop error means?

1

I have a windows 2003 server which restarted suddenlty. The reason given is:

System Failure: Stop error
 Reason Code: 0x805000f
 Bug ID: :-(
 Bugcheck String: 0x000000d1 (0x00000000, 0xd0000002, 0x00000000, 0xf35e8140)
 Comment: 0x000000d1 (0x00000000, 0xd0000002, 0x00000000, 0xf35e8140)

Where can I find out what that means?

windows-server-2003
stoperror
asked on Server Fault Jul 9, 2009 by Yishai

2 Answers

1

Try this Microsoft document on stop errors for windows 2003

Also see this KB Article

STOP 0x000000D1 (parameter1, parameter2, parameter3, parameter4)

You experience this problem on a computer that uses an integrated device electronics (IDE) controller, and the IDE controller requires synchronization across all channels.

A hotfix is available from the kb article.

answered on Server Fault Jul 9, 2009 by Jack B Nimble • edited Jun 11, 2020 by Community
1

That's an IRQL_NOT_LESS_OR_EQUAL. We'd need more information to tell you where it's happening in the code. 9 times out of 10, in my life, that's been a cruddy driver.

If you're able to reproduce it every boot, try booting in Safe Mode (which loads a restricted set of services and drivers) and see how the machine acts. If you can't reproduce it in Safe Mode, start disabling devices and booting into normal mode. (Or, alternatively, learn how to pull apart the memory dump and analyze it. "Monte Carlo" driver disabling might be faster, though...)

answered on Server Fault Jul 9, 2009 by Evan Anderson

User contributions licensed under CC BY-SA 3.0