irql__not_less_or_equal on win 10

Solution
the memory dump showed 9 processes waiting to talk the graphics, one faulted and it was running as a generic service under svchost.exe process.
------
looks like you are also running some license hack software, you should confirm you don't have malware/rootkits and run
cmd.exe as an admin then run
dism.exe /online /cleanup-image /restorehealth
to restore any modified windows core files. (i did not see any in the debugger though)
-----------
I would start by removing any of the below software programs that you don't need. Otherwise you have to figure out what is writing over the data in memory.
to do that you have to start cmd.exe as an admin then run
verifier.exe /standard /all
and reboot.
Please note, be sure you know how to...
the memory dump showed 9 processes waiting to talk the graphics, one faulted and it was running as a generic service under svchost.exe process.
------
looks like you are also running some license hack software, you should confirm you don't have malware/rootkits and run
cmd.exe as an admin then run
dism.exe /online /cleanup-image /restorehealth
to restore any modified windows core files. (i did not see any in the debugger though)
-----------
I would start by removing any of the below software programs that you don't need. Otherwise you have to figure out what is writing over the data in memory.
to do that you have to start cmd.exe as an admin then run
verifier.exe /standard /all
and reboot.
Please note, be sure you know how to get into safe mode (f8 or shift+f8) because the machine might bugcheck on the next bootup and you will have to turn off verifier.exe with
verifier.exe /reset
(be sure to turn it off after you are done testing or your machine will run 20% slower until you do)

if you get a bugcheck while verifier is running it will name the bad device driver in the memory dump file.


-------
in the first bugcheck something overwrote a memory address used virtual memory with data. Most often this will be a old device driver messing up.

if i were to guess it would be this one:
Callback File System http://www.eldos.com/cbfs/
\SystemRoot\System32\drivers\cbfs3.sys Mon Apr 09 06:21:46 2012


this is also a file system filter driver:
BitDefender Gonzales FileSystem Driver
\SystemRoot\system32\DRIVERS\gzflt.sys Mon Apr 22 03:21:00 2013

another suspect file system filter driver:
\SystemRoot\system32\DRIVERS\trufos.sys Wed Mar 06 03:47:58 2013

(mainly because it is a file system driver)

here are some other suspects:
overclocking driver:
C:\Program Files\AMD\ATI.ACE\Fuel\amd64\AODDriver2.sys Tue Feb 11 03:06:52 2014 (not likely in this case, but you should remove it to remove the overclock while trying to figure out this problem)

\SystemRoot\system32\DRIVERS\GEARAspiWDM.sys Thu May 03 12:56:17 2012
\SystemRoot\system32\drivers\GM3305Fltr.sys Wed Mar 28 10:46:15 2012
\SystemRoot\system32\DRIVERS\gzflt.sys Mon Apr 22 03:21:00 2013
\SystemRoot\system32\drivers\RTKVHD64.sys Fri Dec 10 02:09:09 2010
\SystemRoot\System32\drivers\tapoas.sys Sun Jul 11 17:31:59 2010
\SystemRoot\system32\DRIVERS\trufos.sys Wed Mar 06 03:47:58 2013
\SystemRoot\System32\drivers\VClone.sys Wed Jul 24 08:02:55 2013

you can try and look up each driver name here:
http://www.carrona.org/drivers/driver.php?id=VClone.sys

your machine is pretty old with few updates:
2 bios updates, no winodows 10 updates. 1 windows 8.1 update for the USB 3 chipset. http://www.gigabyte.com/products/product-page.aspx?pid=4305#driver


machine info:
BIOS Version F2

BIOS Release Date 08/10/2012
BIOS Version F2
Manufacturer Gigabyte Technology Co., Ltd.
Product Name GA-78LMT-USB3
Processor Version AMD FX(tm)-4100 Quad-Core Processor
Processor Voltage 90h - 1.6V
External Clock 200MHz
Max Speed 3000MHz
Current Speed 3600MHz




 
Solution