When Windows crashes with blue screen, it writes a system event 1001 and a minidump to the folder \windows\minidump. Zip 5 to 6 minidumps and attach the zip files at any webspace. I will study the dump and find out the culprit.
Run memtest to make sure that the ram is healthy. http://www.memtes86.com
Main Topics
Browse All Topics





by: cpc2004Posted on 2005-07-09 at 13:09:42ID: 14404781
Cause
M\CurrentC ontrolSet\ Control\Se ssion Manager\Memory Management registry key. In this key, create or edit the ProtectNonPagedPool value, and set it equal to DWORD 1. Then reboot. Then the system will unmap all freed nonpaged pool. This will prevent drivers from corrupting the pool. (This does not protect the pool from DMA hardware, however.)
The kernel attempted to access pageable memory (or perhaps completely invalid memory) when the IRQL was too high. The ultimate cause of this problem is almost certainly a driver that has corrupted the system pool.
In most cases, this bug check results if a driver corrupts a large allocation (PAGE_SIZE or larger). Smaller allocations result in bug check 0xC5 (DRIVER_CORRUPTED_EXPOOL).
Bug Check 0xD0: DRIVER_CORRUPTED_MMPOOL
The DRIVER_CORRUPTED_MMPOOL bug check has a value of 0x000000D0. This indicates that the system attempted to access invalid memory at a process IRQL that was too high
Resolving the Problem
If you have recently installed any new software, check to see if it is properly installed. Check for updated drivers on the manufacturer's website.
To debug this error, use the special pool option of Driver Verifier. If this fails to reveal the driver that caused the error, use the Global Flags utility to enable the special pool by pool tag.
For information about the special pool, consult the Driver Verifier section of the Windows DDK.
An alternate method is to open the \\HKEY_LOCAL_MACHINE\SYSTE