Stop Error IRQL_NOT_LESS_OR_EQUAL

Published by

Posted on April 29, 2010

Microsoft reason for the error:
This problem typically occurs because drivers call either the IoQueueWorkItem function or the ExQueueWorkItem function two times on the same work item before the work item has been executed.

Device drivers that statically allocate either the IO_WORKITEM structure or the WORK_QUEUE_ITEM structure are particularly prone to this problem. Device drivers that perform such a static allocation must guarantee that they do not try to use the statically allocated item while it is already queued.

================================
WHAT.. that was very technical …

===============
The cause is due to a corrupt hardware driver. you will need to locate the hardware that is having the problem and disabled it. Then install the latest driver for the harddrive before enabling it.

We ran install this issue when playing with out wireless card.
=================

M$ Knowledgbase on it