Solved BSOD PAGE_FAULT_IN_NONPAGED_AREA While browsing the web presumably

xLuckless

New member
Local time
4:24 AM
Messages
2
So I have encountered this error multiple times now and I know its "ntoskrnl.exe" wich is causing it I think.
I scanned my ssd to look if that might be causing it.

Any tips to resolve this issue?
At this point in time I'm running the "sfc /scannow" command. Ill post results.

results: Windows Resource Protection did not find any integrity violations.

file:
View attachment 319962
 

My Computer My Computer

Computer type
PC/Desktop
Computer Manufacturer/Model Number
custom build
OS
Windows 8.1
CPU
Intel® Core™ i7-3770K CPU @ 4.2GHz
Motherboard
Asus SABERTOOTH Z77
Memory
16.0 GB Corsair Vengeance LP 8 GB DDR3-1600 Kit x2
Graphics Card(s)
ASUS GTX680-DC2T-2GD5 2GB
Hard Drives
SSD (Boot Drive):
Crucial, 120GB SSD
HDD (Games):
Western Digital Black, 1 TB HDD
HDD (Media):
Western Digital Green 3 TB HDD(x2 Raid 1, Mirrored)
Antivirus
Windows Defender
Browser
Google Chrome
Code:
BugCheck 50, {[COLOR="Red"]ffffe00009086008[/COLOR], 0, [COLOR="Blue"]fffff800da303dd9[/COLOR], 0}

This bugcheck indicates that there was a page fault in non pageable memory, the address being referenced was completely invalid.
A lot of the time this bugcheck normally indicates RAM failure but it look more like software.

Code:
5: kd> r cr2
[COLOR="Red"]cr2=ffffe00170a75008[/COLOR]

The address being referenced was stored in the 2nd Control Register before the page fault handler was called.

This control register contains the Page Fault Linear Address which stores the address that a program tried to access when a page fault has occurred.

Code:
5: kd> [COLOR="Green"]!pte ffffe00009086008[/COLOR]
                                           VA ffffe00009086008
PXE at FFFFF6FB7DBEDE00    PPE at FFFFF6FB7DBC0000    PDE at FFFFF6FB78000240    PTE at FFFFF6F000048430
contains 0000000000F34863  contains 0000000000F33863  contains 0000000179355863  contains 000CD0AC00000000
GetUlongFromAddress: unable to read from fffff80360373104
pfn f34       ---DA--KWEV  pfn f33       ---DA--KWEV  pfn 179355    ---DA--KWEV  [COLOR="red"]not valid[/COLOR]
                                                                                  PageFile:  0
                                                                                  Offset: cd0ac
                                                                                  Protect: 0

So the address being referenced is completely invalid, so a program tried to access an address that was invalid.
Lets try and rule out the obvious culprits first.

Your Virtual Audio Cable driver from Ventrilo appears to be causing issues.

Code:
*** WARNING: Unable to verify timestamp for vrtaucbl.sys
*** ERROR: Module load completed but symbols could not be loaded for [COLOR="Red"]vrtaucbl.sys[/COLOR]

It's outdated.

Code:
5: kd> [COLOR="Green"]lmvm vrtaucbl[/COLOR]
start             end                 module name
fffff801`d248e000 fffff801`d24a2080   vrtaucbl T (no symbols)           
    Loaded symbol image file: vrtaucbl.sys
    Image path: \SystemRoot\system32\DRIVERS\vrtaucbl.sys
    Image name: vrtaucbl.sys
    Timestamp:        [COLOR="red"]Sun Apr 01 10:08:53 2012[/COLOR] (4F781B25)
    CheckSum:         000252B0
    ImageSize:        00014080
    Translations:     0000.04b0 0000.04e4 0409.04b0 0409.04e4

Update it here.

Ventrilo - Download

Code:
IAStorIcon	"c:\program files\intel\[COLOR="red"]intel(r) rapid storage technology[/COLOR]\iastoriconlaunch.exe" "c:\program files\intel\intel(r) rapid storage technology\iastoricon.exe" 60	Public	HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

Intel Rapid Storage Technology causes lots of issues that can't be fixed permanently so the only way is to remove it completely, here's how:

  1. Right click on "my computer" icon and click "manage" on the context menu.
  2. It will open the "computer management" window.
  3. Select "Device Manager" in the left pane, It will list all the existing devices up.
  4. Expand "Disc Drives" by clicking on the triangle in front of it.
  5. Select one item under it, right click, uninstall.
  6. Continue the process for all items under "Disc Drives"
  7. Now restart the computer. At restart, windows will auto configure the appropriate system driver, msahci.sys.
 

My Computer My Computer

Computer type
PC/Desktop
Thank you for your reply

I'm going to update my VAC, and delete intel rapid storage but before I do that will my raid setup still work?
And will it work better/worse?

Virtual audio cable is not from ventrillo but I will sort that out.

thanks again.
 

My Computer My Computer

Computer type
PC/Desktop
Computer Manufacturer/Model Number
custom build
OS
Windows 8.1
CPU
Intel® Core™ i7-3770K CPU @ 4.2GHz
Motherboard
Asus SABERTOOTH Z77
Memory
16.0 GB Corsair Vengeance LP 8 GB DDR3-1600 Kit x2
Graphics Card(s)
ASUS GTX680-DC2T-2GD5 2GB
Hard Drives
SSD (Boot Drive):
Crucial, 120GB SSD
HDD (Games):
Western Digital Black, 1 TB HDD
HDD (Media):
Western Digital Green 3 TB HDD(x2 Raid 1, Mirrored)
Antivirus
Windows Defender
Browser
Google Chrome
Back
Top