Crash Bluescreen Restart

mantigaa

Prominent
Oct 8, 2017
2
0
510
(In advance sorry for bad grammar) Since about 3 days ago i encountered a problem. Whenever i open an application or game etc. After around 1 to 3 minutes it crashes and i get a blue screen. I have tried some things to fix this which haven't worked such as resetting windows and reinstalling drivers. When i get a blue screen i get different problems there each time such as:memory_damage pfn_list_corrupt critical_process_died and kmode_exception_not_handled.

PC specs: i5 7400 stock cooler, 1x 8gb, gtx 1060 6gb
.
 
Solution
best way to find this bug is to start cmd.exe as an admin (or powershell as an admin)
then run
verifier.exe /standard /all

set your memory dump type from minidump to kernel memory dump
then reboot your machine.

verifier will watch the device drivers for common errors and will call a bugcheck when a driver releases pool memory and then still attempts to use it.
(pool memory is just memory data structures used by device drivers)

the next bugcheck should name the pooltag then you will have to search for the pool tag to find out which driver is causing the problem.

most of the time it will be third party driver since Microsoft will automatically update all of the drivers that is provides with the system.

in your case it is likely...
- run a Malwarebytes scan
- run cmd.exe or powershell as an admin then run
sfc.exe /scannow
DISM.EXE /Online /Cleanup-Image /RestoreHealth
turn off your system virtual memory, reboot and delete the hidden c:\pagefile.sys, then turn the system virtual memory back on (control panel)

- update your motherboard sata drivers
- update your bios or reset it to defaults and reconfigure
then test your memory by running memtest86

if you still have the problem, then you would need to copy your current memory dumps from c:\windows\minidump directory to a cloud server like Microsoft onedrive, or google docs. share the files for public access and post link.
 
I really apprieciate your help, but none of these methods have really worked but i found out a few things. I ran the ''windows memory diagnose'' and it said that my pc has a memory problem. And here is a copy of my memory dump:
https://drive.google.com/open?id=0B1JFyDY8AdTQUU0xQVZkb2RnMW8

And this is what the command prompt said when i did the scan you told me to do:
Beginning system scan. This process will take some time.

Beginning verification phase of system scan.
Verification 100% complete.

Windows Resource Protection found corrupt files but was unable to fix some
of them. Details are included in the CBS.Log windir\Logs\CBS\CBS.log. For
example C:\Windows\Logs\CBS\CBS.log. Note that logging is currently not
supported in offline servicing scenarios.

C:\WINDOWS\system32>DISM.EXE /Online /Cleanup-Image /RestoreHealth




 
best way to find this bug is to start cmd.exe as an admin (or powershell as an admin)
then run
verifier.exe /standard /all

set your memory dump type from minidump to kernel memory dump
then reboot your machine.

verifier will watch the device drivers for common errors and will call a bugcheck when a driver releases pool memory and then still attempts to use it.
(pool memory is just memory data structures used by device drivers)

the next bugcheck should name the pooltag then you will have to search for the pool tag to find out which driver is causing the problem.

most of the time it will be third party driver since Microsoft will automatically update all of the drivers that is provides with the system.

in your case it is likely to be a motherboard driver. if I were to guess I would look at the intel driver
\SystemRoot\System32\drivers\ICCWDT.sys Sun Sep 20 00:59:19 2015

you might just run the intel driver update utility before attempting to debug the problem. https://downloadcenter.intel.com/


 
Solution