Wat staat er onder de stop code?
*** STOP: 0x000000D1 (ox20000001, 0x00000002, 0x00000001, 0xF6EA8BBF)
*** USBPORT.SYS - Address F6EA8BBF base at F6E8F000, DateStamp 3f04cf17
Usb ? of Logitech? dat laatste is best bekend. De mouseware versie is dan te oud zeg maar, en moet je even de laaste versie er op zetten (mocht het dus met je muis te maken hebben)
---------------
IRQL_NOT_LESS_OR_EQUAL Stop Errors
Possibly the most annoying Stop error that you will ever see, essentially is a memory error caused by a driver or piece of software that has caused an error accessing memory, It can also be caused by defective/unsupported hardware, so prety much anything :0(
When you get the stop error it will be accompanied by some information i.e.
Stop: 0x0000000A (parameter1, parameter2, parameter3, parameter4) IRQL_NOT_LESS_OR_EQUAL*** Address x has base at x - filename
The parameters refer to the specific issues that are involved:
Parameter 1 - An address that was referenced improperly
Parameter 2 - An IRQL that was required to access the memory
Parameter 3 - The type of access, where 0 is a read operation and 1 is a write operation
Parameter 4 - The address of the instruction that referenced memory in parameter 1
Make a note of the stop error ESPECIALLY the "filename" as this can point you to a defective driver or the software/hardware at the root of the problem. do a Google search on the "filename" To help you narrow it down.
This is what M$ has to say
>>Stop error 0x0000000A (Stop 0x0A) shows that there was an attempt in kernel
>>mode to touch pageable memory at too high a process internal request level
>>(IRQL). This error usually occurs when a driver uses an incorrect memory
>>address. Other possible causes of this error are an incompatible device driver,
>>a general hardware problem, and incompatible software.
If the "filename" above yeilds no results you need to do some basic troubleshooting
1. First check your Hardware is supported by Microsoft
http://www.microsoft.com/hcl/
2. Then Check you RAM either by swapping it out or using...
http://www.memtest86.com/
http://www.simmtester.com/page/products/doc/docfeat.asp
------