BSOD while gaming on fresh Windows 8.1

printer13

Reputable
Sep 18, 2014
1
0
4,510
Hello everyone. I've been getting a ton of very intrusive blue screens while performing swift gaming acts such as keystrokes or mouse movements or alt tabbing while in game. I have 4 .dmp files and a dxdiag. Can anyone help me? The september 17 files were from before a fresh windows install.
http://speedy.sh/SX5xU/091814-45828-01.dmp
http://speedy.sh/Ccxzg/091814-34640-01.dmp
http://speedy.sh/Y8zuj/DxDiag.txt
http://speedy.sh/aquQb/091714-27953-01.dmp
http://speedy.sh/TFQyG/091714-20468-01.dmp
 
Solution
ok, guess you are running some application cache program that broke.
\SystemRoot\system32\DRIVERS\ahcache.sys Thu Aug 22 04:39:54 2013

I would be looking to see if there is a microsoft update for this.
here is the stack
: kd> kc
Call Site
nt!KeBugCheckEx
nt!KiBugCheckDispatch
nt!KiSystemServiceHandler
nt!RtlpExecuteHandlerForException
nt!RtlDispatchException
nt!KiDispatchException
nt!KiExceptionDispatch
nt!KiPageFault
ahcache!AhcpStoreEntryRemove
ahcache!AhcpStoreInsertAvlEntry
ahcache!AhcStoreInsert
ahcache!AhcStoreUpdate
ahcache!AhcCacheUpdate
ahcache!AhcpLookupCompat
ahcache!AhcLookup
ahcache!AhcDriverDispatchDeviceControl
VerifierExt!xdv_IRP_MJ_DEVICE_CONTROL_wrapper
nt!IovCallDriver
nt!NtApphelpCacheControl...
the debugger indicates that you don't have a pagefile.sys on your system.
this may be true, in that case windows will reserve a portion of your memory as a pagefile
problem is that it filled up because of your game and when you alt tab out the system had to swap out code and could not and it caused a bugcheck.

Committed pages: 374035 ( 1496140 Kb)
********** Number of committed pages is near limit ********


- check your virtual memory settings and make a pagefile that is twice the size of your physical RAM.
and make sure you have room to expand the pagefile.sys on the drive.
 
ok, guess you are running some application cache program that broke.
\SystemRoot\system32\DRIVERS\ahcache.sys Thu Aug 22 04:39:54 2013

I would be looking to see if there is a microsoft update for this.
here is the stack
: kd> kc
Call Site
nt!KeBugCheckEx
nt!KiBugCheckDispatch
nt!KiSystemServiceHandler
nt!RtlpExecuteHandlerForException
nt!RtlDispatchException
nt!KiDispatchException
nt!KiExceptionDispatch
nt!KiPageFault
ahcache!AhcpStoreEntryRemove
ahcache!AhcpStoreInsertAvlEntry
ahcache!AhcStoreInsert
ahcache!AhcStoreUpdate
ahcache!AhcCacheUpdate
ahcache!AhcpLookupCompat
ahcache!AhcLookup
ahcache!AhcDriverDispatchDeviceControl
VerifierExt!xdv_IRP_MJ_DEVICE_CONTROL_wrapper
nt!IovCallDriver
nt!NtApphelpCacheControl
nt!KiSystemServiceCopyEnd
0x0
looks like you were looking for a failure and turned on verifer.exe flags
and ahcache.sys used a bad memory address.
while runnng SearchIndexer.exe

you might google on how to stop searchIndexer.exe and delete its database, and change its search path.
I think it can hit bugs that cause it to keep cycling through and indexing the same files in a loop so that the index grows and grows until it uses up your entire drive. Makes the system very slow and your hard drive space gets used up.


 
Solution