Various Different BSoD Windows 8.1

jon22706

Member
Joined
Jan 4, 2015
Posts
7
Hello,

Ever since I built my computer I've been having trouble with BSoD. The error code vary but the most common seems to be KMODE_EXCEPTION_NOT_HANDLED. Initially I though it was the RAM so I sent for a replacement, This didn't fix the problem, then I tried replacing the Video Card and the crashes still happened. I'm all out of ideas.
 

Attachments

Code:
1: kd> .bugcheck
Bugcheck code 0000001E
Arguments ffffffff`c0000005 fffff802`2d2cf048 00000000`00000000 ffffffff`ffffffff

Code:
1: kd> kv
Child-SP          RetAddr           : Args to Child                                                           : Call Site
ffffd000`d6344aa8 fffff802`2d45c60a : 00000000`0000001e ffffffff`c0000005 fffff802`2d2cf048 00000000`00000000 : nt!KeBugCheckEx
ffffd000`d6344ab0 fffff802`2d3d1eed : ffffd000`d6345220 00000000`00000000 ffffd000`d6345a18 ffffd000`d6344c20 : nt!KiFatalExceptionHandler+0x22
ffffd000`d6344af0 fffff802`2d338b25 : 00000000`00000001 fffff802`2d27a000 ffffd000`d6345a00 00000438`00000000 : nt!RtlpExecuteHandlerForException+0xd
ffffd000`d6344b20 fffff802`2d33cede : ffffd000`d6345a18 ffffd000`d6345720 ffffd000`d6345a18 ffffd000`d631c180 : nt!RtlDispatchException+0x1a5
ffffd000`d63451f0 fffff802`2d3d65c2 : 00000000`00000000 00000000`00000000 00000000`00000001 00001fa0`003b0048 : nt!KiDispatchException+0x646
ffffd000`d63458e0 fffff802`2d3d4afe : ffff6dcf`ffffffff 00000001`8f57fb1a ffffe000`1ecb06d0 00000000`00000000 : nt!KiExceptionDispatch+0xc2
ffffd000`d6345ac0 fffff802`2d2cf048 : ffffd000`d631c180 ffffd000`d6345c8c ffffd000`d6345c90 ffffd000`d6345c98 : nt!KiGeneralProtectionFault+0xfe (TrapFrame @ ffffd000`d6345ac0)
ffffd000`d6345c50 fffff802`2d3ce4bc : ffffd000`d631c180 ffffd000`d631c180 ffffd000`d63282c0 ffffe000`1e0eea20 : nt!PoIdle+0x98
ffffd000`d6345da0 00000000`00000000 : ffffd000`d6346000 ffffd000`d6340000 00000000`00000000 00000000`00000000 : nt!KiIdleLoop+0x2c

Code:
1: kd> .trap ffffd000`d6345ac0
NOTE: The trap frame does not contain all registers.
Some register values may be zeroed or incorrect.
rax=0000000000000000 rbx=0000000000000000 rcx=ffffd000d631c180
rdx=00000000001aa000 rsi=0000000000000000 rdi=0000000000000000
rip=fffff8022d2cf048 rsp=ffffd000d6345c50 rbp=ffffd000d6345d50
 r8=0000000000000023  r9=00ffe0001ec88328 r10=ffffe0001ec88010
r11=ffffd000d6345d98 r12=0000000000000000 r13=0000000000000000
r14=0000000000000000 r15=0000000000000000
iopl=0         nv up di pl nz na po nc
nt!PoIdle+0x98:
fffff802`2d2cf048 4d014128        add     qword ptr [r9+28h],r8 ds:00ffe000`1ec88350=????????????????

add instruction, specifically register to memory.

Code:
1: kd> !pte 00ffe0001ec88328 
                                           VA 00ffe0001ec88328
PXE at FFFFF6FB7DBEDE00    PPE at FFFFF6FB7DBC0000    PDE at FFFFF6FB780007B0    PTE at FFFFF6F0000F6440
Unable to get PXE FFFFF6FB7DBEDE00
WARNING: noncanonical VA, accesses will fault !

r9 was noncanonical, therefore it faulted and the bug check was thrown as it's a bad virtual address.

Enable verifier, I want to see if it's a driver since this is happening directly after idle.

Driver Verifier:

What is Driver Verifier?

Driver Verifier monitors Windows kernel-mode drivers, graphics drivers, and even 3rd party drivers to detect illegal function calls or actions that might corrupt the system. Driver Verifier can subject the Windows drivers to a variety of stresses and tests to find improper behavior.

Essentially, if there's a 3rd party driver believed to be causing the issues at hand, enabling Driver Verifier will help us see which specific driver is causing the problem.

Before enabling Driver Verifier, it is recommended to create a System Restore Point:

Vista - START | type rstrui - create a restore point
Windows 7 - START | type create | select "Create a Restore Point"
Windows 8/8.1 - Restore Point - Create in Windows 8

How to enable Driver Verifier:

Start > type "verifier" without the quotes > Select the following options -

1. Select - "Create custom settings (for code developers)"
2. Select - "Select individual settings from a full list"
3. Check the following boxes -
- Special Pool
- Pool Tracking
- Force IRQL Checking
- Deadlock Detection
- Security Checks (only on Windows 7 & 8/8.1)
- DDI compliance checking (only on Windows 8/8.1)
- Miscellaneous Checks
4. Select - "Select driver names from a list"
5. Click on the "Provider" tab. This will sort all of the drivers by the provider.
6. Check EVERY box that is NOT provided by Microsoft / Microsoft Corporation.
7. Click on Finish.
8. Restart.

Important information regarding Driver Verifier:

- Perhaps the most important which I will now clarify as this has been misunderstood often, enabling Driver Verifier by itself is not! a solution, but instead a diagnostic utility. It will tell us if a driver is causing your issues, but again it will not outright solve your issues.

- If Driver Verifier finds a violation, the system will BSOD. To expand on this a bit more for the interested, specifically what Driver Verifier actually does is it looks for any driver making illegal function calls, causing memory leaks, etc. When and/if this happens, system corruption occurs if allowed to continue. When Driver Verifier is enabled per my instructions above, it is monitoring all 3rd party drivers (as we have it set that way) and when it catches a driver attempting to do this, it will quickly flag that driver as being a troublemaker, and bring down the system safely before any corruption can occur.

- After enabling Driver Verifier and restarting the system, depending on the culprit, if for example the driver is on start-up, you may not be able to get back into normal Windows because Driver Verifier will detect it in violation almost straight away, and as stated above, that will cause / force a BSOD.

If this happens, do not panic, do the following:

- Boot into Safe Mode by repeatedly tapping the F8 key during boot-up.

- Once in Safe Mode - Start > Search > type "cmd" without the quotes.

- To turn off Driver Verifier, type in cmd "verifier /reset" without the quotes.

- Restart and boot into normal Windows.

If your OS became corrupt or you cannot boot into Windows after disabling verifier via Safe Mode:

- Boot into Safe Mode by repeatedly tapping the F8 key during boot-up.

- Once in Safe Mode - Start > type "system restore" without the quotes.

- Choose the restore point you created earlier.

-- Note that Safe Mode for Windows 8/8.1 is a bit different, and you may need to try different methods: 5 Ways to Boot into Safe Mode in Windows 8 & Windows 8.1

How long should I keep Driver Verifier enabled for?

I recommend keeping it enabled for at least 24 hours. If you don't BSOD by then, disable Driver Verifier. I will usually say whether or not I'd like for you to keep it enabled any longer.

My system BSOD'd with Driver Verifier enabled, where can I find the crash dumps?

- If you have the system set to generate Small Memory Dumps, they will be located in %systemroot%\Minidump.

- If you have the system set to generate Kernel Memory Dumps, it will be located in %systemroot% and labeled MEMORY.DMP.

Any other questions can most likely be answered by this article:

Using Driver Verifier to identify issues with Windows drivers for advanced users
 
Disable verifier, this is likely a memory problem. Run memtest for no less than 8 passes.

Memtest86+:

Download Memtest86+ here:

Memtest86+ - Advanced Memory Diagnostic Tool

Which should I download?

You can either download the pre-compiled .ISO that you would burn to a CD and then boot from the CD, or you can download the auto-installer for the USB key. What this will do is format your USB drive, make it a bootable device, and then install the necessary files. Both do the same job, it's just up to you which you choose, or which you have available (whether it's CD or USB).

Do note that some older generation motherboards do not support USB-based booting, therefore your only option is CD (or Floppy if you really wanted to).

How Memtest works (you don't need to read, it's only for those interested in the specifics):

Memtest uses algorithms (specifically two), namely moving inversion & what is deemed Modulo-X. Essentially, the first algorithm fills the memory with a pattern. Starting at the low address, it checks to see if the pattern was changed (it should not have been), writes the patterns complement, increments the address, and repeats. Starting at the highest address (as opposed to the lowest), it follows the same checklist.

The reason for the second algorithm is due to a few limitations, with the first being that not all adjacent cells are being tested for interaction due to modern chips being 4 to 16 bits wide regarding data storage. With that said, patterns are used to go ahead and ensure that all adjacent cells have at least been written with all possible one and zero combinations.

The second is that caching, buffering and out of order execution will interfere with the moving inversions algorithm. However, the second algorithm used is not affected by this. For starting offsets of 0-20, the algorithm will write every 20th location with a pattern, write all other locations with the patterns complement, repeat the previous one (or more) times, and then check every 20th location for the previously mentioned pattern.

Now that you know how Memtest actually works, it's important to know that the tests it goes through all mean something different. It goes from Test 0 through Test 12, many of which use either one or the other algorithm discussed above, among many other things.

Any other questions, they can most likely be answered by reading this great guide here:

FAQ : please read before posting
 
What do the voltages look like with the smaller PSU installed?

This is yet another BC code (3B) which tells me it's hardware if the ram is testing good and the voltages are within spec then it's probably going to be a motherboard.

Code:
**************************Tue Mar 31 10:29:17.844 2015 (UTC - 4:00)**************************
Opened log file 'C:\Users\Owner\AppData\Local\Temp\SysnativeBSODApps\4688\dmps\outkdOutput1.txt'

Microsoft (R) Windows Debugger Version 6.12.0002.633 AMD64
Copyright (c) Microsoft Corporation. All rights reserved.


Loading Dump File [C:\Users\Owner\Bsodapps\SysnativeBSODApps\033115-17250-01.dmp]
Mini Kernel Dump File: Only registers and stack trace are available

Symbol search path is: c:\symbols
Executable search path is: 
Windows 7 Kernel Version 9600 MP (4 procs) Free x64
Product: WinNt, suite: TerminalServer SingleUserTS Personal
Built by: 9600.17668.amd64fre.winblue_r8.150127-1500
Machine Name:
Kernel base = 0xfffff802`d4801000 PsLoadedModuleList = 0xfffff802`d4ada250
Debug session time: Tue Mar 31 10:29:17.844 2015 (UTC - 4:00)
System Uptime: 0 days 0:04:45.587
Loading Kernel Symbols
..

Press ctrl-c (cdb, kd, ntsd) or ctrl-break (windbg) to abort symbol loads that take too long.
Run !sym noisy before .reload to track down problems loading symbols.

.............................................................
................................................................
............
Loading User Symbols
Loading unloaded module list
........
*******************************************************************************
*                                                                             *
*                        Bugcheck Analysis                                    *
*                                                                             *
*******************************************************************************

Use !analyze -v to get detailed debugging information.

BugCheck 3B, {c0000005, fffff8008dd29e2b, ffffd000245075c0, 0}

Probably caused by : fltmgr.sys ( fltmgr!FltObjectDereference+bfb )

Followup: MachineOwner
---------

2: kd> !analyze -v; !sysinfo cpuspeed; !sysinfo SMBIOS; lmtsmn; q
*******************************************************************************
*                                                                             *
*                        Bugcheck Analysis                                    *
*                                                                             *
*******************************************************************************

SYSTEM_SERVICE_EXCEPTION (3b)
An exception happened while executing a system service routine.
Arguments:
Arg1: 00000000c0000005, Exception code that caused the bugcheck
Arg2: fffff8008dd29e2b, Address of the instruction which caused the bugcheck
Arg3: ffffd000245075c0, Address of the context record for the exception that caused the bugcheck
Arg4: 0000000000000000, zero.

Debugging Details:
------------------


EXCEPTION_CODE: (NTSTATUS) 0xc0000005 - The instruction at 0x%08lx referenced memory at 0x%08lx. The memory could not be %s.

FAULTING_IP: 
fltmgr!FltObjectDereference+bfb
fffff800`8dd29e2b 488b4120        mov     rax,qword ptr [rcx+20h]

CONTEXT:  ffffd000245075c0 -- (.cxr 0xffffd000245075c0)
.cxr 0xffffd000245075c0
rax=00000000000000ff rbx=ffffe0005110a3b0 rcx=ff00000000000000
rdx=0000000000000001 rsi=ffffe0004e88df20 rdi=ffffe0005110a408
rip=fffff8008dd29e2b rsp=ffffd00024507ff0 rbp=ffffd00024508299
 r8=ffffe0004e88df20  r9=ffffe0004fff7c60 r10=fffff8008dd4b120
r11=fffff8008dd26203 r12=ffffe000512614c8 r13=ffffe0004fff7c60
r14=ffffe0004fff7c60 r15=0000000000000000
iopl=0         nv up ei ng nz na po nc
cs=0010  ss=0018  ds=002b  es=002b  fs=0053  gs=002b             efl=00010286
fltmgr!FltObjectDereference+0xbfb:
fffff800`8dd29e2b 488b4120        mov     rax,qword ptr [rcx+20h] ds:002b:ff000000`00000020=????????????????
.cxr
Resetting default scope

CUSTOMER_CRASH_COUNT:  1

DEFAULT_BUCKET_ID:  VISTA_DRIVER_FAULT

BUGCHECK_STR:  0x3B

PROCESS_NAME:  MsMpEng.exe

CURRENT_IRQL:  0

LAST_CONTROL_TRANSFER:  from 0000000000000000 to fffff8008dd29e2b

STACK_TEXT:  
ffffd000`24507ff0 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : fltmgr!FltObjectDereference+0xbfb


FOLLOWUP_IP: 
fltmgr!FltObjectDereference+bfb
fffff800`8dd29e2b 488b4120        mov     rax,qword ptr [rcx+20h]

SYMBOL_STACK_INDEX:  0

SYMBOL_NAME:  fltmgr!FltObjectDereference+bfb

FOLLOWUP_NAME:  MachineOwner

MODULE_NAME: fltmgr

IMAGE_NAME:  fltmgr.sys

DEBUG_FLR_IMAGE_TIMESTAMP:  53416062

STACK_COMMAND:  .cxr 0xffffd000245075c0 ; kb

FAILURE_BUCKET_ID:  X64_0x3B_fltmgr!FltObjectDereference+bfb

BUCKET_ID:  X64_0x3B_fltmgr!FltObjectDereference+bfb

Followup: MachineOwner
---------

sysinfo: unknown error 80004005
[SMBIOS Data Tables v2.7]
[DMI Version - 39]
[2.0 Calling Convention - No]
[Table Size - 2445 bytes]

[BIOS Information (Type 0) - Length 24 - Handle 0000h]
  Vendor                        American Megatrends Inc.
  BIOS Version                  2501
  BIOS Starting Address Segment f000
  BIOS Release Date             04/07/2014
  BIOS ROM Size                 800000
  BIOS Characteristics
       07: - PCI Supported
       11: - Upgradeable FLASH BIOS
       12: - BIOS Shadowing Supported
       15: - CD-Boot Supported
       16: - Selectable Boot Supported
       17: - BIOS ROM Socketed
       19: - EDD Supported
       23: - 1.2MB Floppy Supported
       24: - 720KB Floppy Supported
       25: - 2.88MB Floppy Supported
       26: - Print Screen Device Supported
       27: - Keyboard Services Supported
       28: - Serial Services Supported
       29: - Printer Services Supported
       32: - BIOS Vendor Reserved
       34: - BIOS Vendor Reserved
  BIOS Characteristic Extensions
       00: - ACPI Supported
       01: - USB Legacy Supported
       08: - BIOS Boot Specification Supported
       10: - Specification Reserved
       11: - Specification Reserved
  BIOS Major Revision           4
  BIOS Minor Revision           6
  EC Firmware Major Revision    255
  EC Firmware Minor Revision    255
[System Information (Type 1) - Length 27 - Handle 0001h]
  Manufacturer                  To be filled by O.E.M.
  Product Name                  To be filled by O.E.M.
  Version                       To be filled by O.E.M.
  Serial Number                                       
  UUID                          00000000-0000-0000-0000-000000000000
  Wakeup Type                   Power Switch
  SKUNumber                     SKU
  Family                        To be filled by O.E.M.
[BaseBoard Information (Type 2) - Length 15 - Handle 0002h]
  Manufacturer                  ASUSTeK COMPUTER INC.
  Product                       M5A97 R2.0
  Version                       Rev 1.xx
  Serial Number                                
  Asset Tag                                           
  Feature Flags                 09h
       -498952504: - h
       -498952552: - 

  Location                      To be filled by O.E.M.
  Chassis Handle                0003h
  Board Type                    0ah - Processor/Memory Module
  Number of Child Handles       0
[System Enclosure (Type 3) - Length 22 - Handle 0003h]
  Manufacturer                  To Be Filled By O.E.M.
  Chassis Type                  Desktop
  Version                       To Be Filled By O.E.M.
  Serial Number                                       
  Asset Tag Number                                    
  Bootup State                  Safe
  Power Supply State            Safe
  Thermal State                 Safe
  Security Status               None
  OEM Defined                   0
  Height                        0U
  Number of Power Cords         1
  Number of Contained Elements  0
  Contained Element Size        0
[Processor Information (Type 4) - Length 42 - Handle 0004h]
  Socket Designation            Socket 942
  Processor Type                Central Processor
  Processor Family              ech - Specification Reserved
  Processor Manufacturer        AMD              
  Processor ID                  430f1000fffb8b17
  Processor Version             AMD Phenom(tm) II X4 965 Processor             
  Processor Voltage             8eh - 1.4V
  External Clock                200MHz
  Max Speed                     3400MHz
  Current Speed                 3400MHz
  Status                        Enabled Populated
  Processor Upgrade             Specification Reserved
  L1 Cache Handle               0005h
  L2 Cache Handle               0006h
  L3 Cache Handle               0007h
  Serial Number                                       
  Asset Tag Number                                    
  Part Number                   To Be Filled By O.E.M.
[Cache Information (Type 7) - Length 19 - Handle 0005h]
  Socket Designation            L1-Cache
  Cache Configuration           0180h - WB Enabled Int NonSocketed L1
  Maximum Cache Size            0200h - 512K
  Installed Size                0200h - 512K
  Supported SRAM Type           0010h - Pipeline-Burst 
  Current SRAM Type             0010h - Pipeline-Burst 
  Cache Speed                   1ns
  Error Correction Type         Specification Reserved
  System Cache Type             Unified
  Associativity                 2-way Set-Associative
[Cache Information (Type 7) - Length 19 - Handle 0006h]
  Socket Designation            L2-Cache
  Cache Configuration           0181h - WB Enabled Int NonSocketed L2
  Maximum Cache Size            0800h - 2048K
  Installed Size                0800h - 2048K
  Supported SRAM Type           0010h - Pipeline-Burst 
  Current SRAM Type             0010h - Pipeline-Burst 
  Cache Speed                   1ns
  Error Correction Type         Specification Reserved
  System Cache Type             Unified
  Associativity                 16-way Set-Associative
[Cache Information (Type 7) - Length 19 - Handle 0007h]
  Socket Designation            L3-Cache
  Cache Configuration           0182h - WB Enabled Int NonSocketed L3
  Maximum Cache Size            1800h - 6144K
  Installed Size                1800h - 6144K
  Supported SRAM Type           0010h - Pipeline-Burst 
  Current SRAM Type             0010h - Pipeline-Burst 
  Cache Speed                   1ns
  Error Correction Type         Specification Reserved
  System Cache Type             Unified
  Associativity                 Specification Reserved
[Onboard Devices Information (Type 10) - Length 6 - Handle 0029h]
  Number of Devices             1
  01: Type                      Video [enabled]
  01: Description                  To Be Filled By O.E.M.
[OEM Strings (Type 11) - Length 5 - Handle 002ah]
  Number of Strings             4
   1                            To Be Filled By O.E.M.
   2                            To Be Filled By O.E.M.
   3                            To Be Filled By O.E.M.
   4                            To Be Filled By O.E.M.
[System Configuration Options (Type 12) - Length 5 - Handle 002bh]
[Physical Memory Array (Type 16) - Length 23 - Handle 002ch]
  Location                      03h - SystemBoard/Motherboard
  Use                           03h - System Memory
  Memory Error Correction       03h - None
  Maximum Capacity              33554432KB
  Memory Error Inf Handle       [Not Provided]
  Number of Memory Devices      4
[Memory Array Mapped Address (Type 19) - Length 31 - Handle 002dh]
  Starting Address              00000000h
  Ending Address                007fffffh
  Memory Array Handle           002ch
  Partition Width               255
[Memory Device (Type 17) - Length 34 - Handle 002eh]
  Physical Memory Array Handle  002ch
  Memory Error Info Handle      [Not Provided]
  Total Width                   0 bits
  Data Width                    64 bits
  Size                          [Not Populated]
  Form Factor                   09h - DIMM
  Device Set                    [None]
  Device Locator                DIMM0
  Bank Locator                  BANK0
  Memory Type                   02h - Unknown
  Type Detail                   0080h - Synchronous
  Speed                         0MHz
  Manufacturer                  Manufacturer0
  Serial Number                        
  Asset Tag Number                          
  Part Number                   Array1_PartNumber0
[Memory Device (Type 17) - Length 34 - Handle 0030h]
  Physical Memory Array Handle  002ch
  Memory Error Info Handle      [Not Provided]
  Total Width                   64 bits
  Data Width                    64 bits
  Size                          4096MB
  Form Factor                   09h - DIMM
  Device Set                    [None]
  Device Locator                DIMM1
  Bank Locator                  BANK1
  Memory Type                   18h - Specification Reserved
  Type Detail                   4080h - Synchronous
  Speed                         1600MHz
  Manufacturer                  Kingston     
  Serial Number                        
  Asset Tag Number                          
  Part Number                   KHX1600C10D3/8G   
[Memory Device Mapped Address (Type 20) - Length 35 - Handle 0031h]
  Starting Address              00000000h
  Ending Address                007fffffh
  Memory Device Handle          0030h
  Mem Array Mapped Adr Handle   002dh
  Partition Row Position        [Unknown]
  Interleave Position           [Unknown]
  Interleave Data Depth         [Unknown]
[Memory Device (Type 17) - Length 34 - Handle 0032h]
  Physical Memory Array Handle  002ch
  Memory Error Info Handle      [Not Provided]
  Total Width                   0 bits
  Data Width                    64 bits
  Size                          [Not Populated]
  Form Factor                   09h - DIMM
  Device Set                    [None]
  Device Locator                DIMM2
  Bank Locator                  BANK2
  Memory Type                   02h - Unknown
  Type Detail                   0080h - Synchronous
  Speed                         0MHz
  Manufacturer                  Manufacturer2
  Serial Number                        
  Asset Tag Number                          
  Part Number                   Array1_PartNumber2
[Memory Device (Type 17) - Length 34 - Handle 0034h]
  Physical Memory Array Handle  002ch
  Memory Error Info Handle      [Not Provided]
  Total Width                   64 bits
  Data Width                    64 bits
  Size                          4096MB
  Form Factor                   09h - DIMM
  Device Set                    [None]
  Device Locator                DIMM3
  Bank Locator                  BANK3
  Memory Type                   18h - Specification Reserved
  Type Detail                   4080h - Synchronous
  Speed                         1600MHz
  Manufacturer                  Kingston     
  Serial Number                        
  Asset Tag Number                          
  Part Number                   KHX1600C10D3/8G   
[Memory Device Mapped Address (Type 20) - Length 35 - Handle 0035h]
  Starting Address              00000000h
  Ending Address                007fffffh
  Memory Device Handle          0034h
  Mem Array Mapped Adr Handle   002dh
  Partition Row Position        [Unknown]
  Interleave Position           [Unknown]
  Interleave Data Depth         [Unknown]
start             end                 module name
fffff800`8d934000 fffff800`8d9be000   ACPI     ACPI.sys     Sat Feb 22 07:13:57 2014 (53089485)
fffff800`8d911000 fffff800`8d929000   acpiex   acpiex.sys   Thu Aug 22 07:37:47 2013 (5215F80B)
fffff800`8ec4d000 fffff800`8ecdf000   afd      afd.sys      Thu May 29 23:03:01 2014 (5387F4E5)
fffff800`8e000000 fffff800`8e017000   ahcache  ahcache.sys  Thu Dec 11 19:51:20 2014 (548A3C08)
fffff800`8dc85000 fffff800`8dca2000   amd_sata amd_sata.sys Tue Sep 23 03:06:57 2014 (54211C11)
fffff800`8dd01000 fffff800`8dd0b000   amd_xata amd_xata.sys Tue Sep 23 03:06:59 2014 (54211C13)
fffff800`90600000 fffff800`90627000   AMDACPKSL AMDACPKSL.SYS Sat Dec 20 22:38:02 2014 (5496409A)
fffff800`8e295000 fffff800`8e2a8000   amdkmpfd amdkmpfd.sys Mon Oct 27 19:26:38 2014 (544ED4AE)
fffff800`90715000 fffff800`90733000   amdppm   amdppm.sys   Thu Aug 22 04:46:34 2013 (5215CFEA)
fffff800`8ede6000 fffff800`8edec000   AsIO     AsIO.sys     Wed Aug 22 05:54:47 2012 (5034AC67)
fffff800`9068d000 fffff800`906b2000   asmthub3 asmthub3.sys Fri Aug 16 15:28:54 2013 (520E7D76)
fffff800`8ef74000 fffff800`8efde000   asmtxhci asmtxhci.sys Fri Aug 16 15:28:42 2013 (520E7D6A)
fffff800`907c1000 fffff800`907fd000   AtihdWB6 AtihdWB6.sys Sat Dec 20 22:38:19 2014 (549640AB)
fffff800`8f0f9000 fffff800`903d7000   atikmdag atikmdag.sys Wed Mar 18 22:56:51 2015 (550A3AF3)
fffff800`8eedd000 fffff800`8ef74000   atikmpag atikmpag.sys Wed Mar 18 21:39:16 2015 (550A28C4)
fffff800`8ebac000 fffff800`8ebbe000   BasicDisplay BasicDisplay.sys Thu Aug 22 07:39:31 2013 (5215F873)
fffff800`8e608000 fffff800`8e616000   BasicRender BasicRender.sys Sat Feb 22 07:14:02 2014 (5308948A)
fffff800`8e600000 fffff800`8e608000   Beep     Beep.SYS     Thu Aug 22 07:40:24 2013 (5215F8A8)
fffff800`8d6e5000 fffff800`8d6ef000   BOOTVID  BOOTVID.dll  Thu Aug 22 07:40:26 2013 (5215F8AA)
fffff800`90d33000 fffff800`90d53000   bowser   bowser.sys   Thu Aug 22 07:38:38 2013 (5215F83E)
fffff960`008c5000 fffff960`00900000   cdd      cdd.dll      Thu Mar 06 07:39:53 2014 (53186C99)
fffff800`8e7c6000 fffff800`8e7f4000   cdrom    cdrom.sys    Thu Aug 22 04:46:35 2013 (5215CFEB)
fffff800`8d6ef000 fffff800`8d777000   CI       CI.dll       Fri Dec 05 22:23:28 2014 (548276B0)
fffff800`8e71d000 fffff800`8e772000   CLASSPNP CLASSPNP.SYS Wed Apr 09 02:53:25 2014 (5344EE65)
fffff800`8d64d000 fffff800`8d6ae000   CLFS     CLFS.SYS     Wed Mar 19 04:12:20 2014 (53295164)
fffff800`8da87000 fffff800`8db13000   cng      cng.sys      Tue Jan 13 21:29:05 2015 (54B5D471)
fffff800`8edec000 fffff800`8edfb000   CompositeBus CompositeBus.sys Thu Aug 22 07:38:48 2013 (5215F848)
fffff800`8e772000 fffff800`8e787000   crashdmp crashdmp.sys Thu Aug 22 07:40:03 2013 (5215F893)
fffff800`8edb0000 fffff800`8edd6000   dfsc     dfsc.sys     Thu Mar 06 04:22:50 2014 (53183E6A)
fffff800`8e701000 fffff800`8e71d000   disk     disk.sys     Thu Aug 22 07:39:47 2013 (5215F883)
fffff800`90447000 fffff800`90463000   drmk     drmk.sys     Thu Aug 22 07:39:24 2013 (5215F86C)
fffff800`8eea1000 fffff800`8eebe000   dump_amd_sata dump_amd_sata.sys Tue Sep 23 03:06:57 2014 (54211C11)
fffff800`8eebe000 fffff800`8eed4000   dump_dumpfve dump_dumpfve.sys Sat Feb 22 07:14:48 2014 (530894B8)
fffff800`905ec000 fffff800`905f8000   dump_storport dump_storport.sys Thu Aug 22 07:40:18 2013 (5215F8A2)
fffff800`8ea19000 fffff800`8eb9a000   dxgkrnl  dxgkrnl.sys  Thu Jun 12 18:32:12 2014 (539A2A6C)
fffff800`8e616000 fffff800`8e677000   dxgmms1  dxgmms1.sys  Thu Mar 06 04:22:14 2014 (53183E46)
fffff800`8dd0b000 fffff800`8dd25000   EhStorClass EhStorClass.sys Thu Aug 22 07:38:15 2013 (5215F827)
fffff800`8dd81000 fffff800`8dd97000   fileinfo fileinfo.sys Sat Feb 22 07:13:10 2014 (53089456)
fffff800`8dd25000 fffff800`8dd81000   fltmgr   fltmgr.sys   Sun Apr 06 10:10:42 2014 (53416062)
fffff800`8ddee000 fffff800`8ddf9000   Fs_Rec   Fs_Rec.sys   Thu Aug 22 04:46:33 2013 (5215CFE9)
fffff800`8e200000 fffff800`8e295000   fvevol   fvevol.sys   Mon Apr 07 18:25:31 2014 (534325DB)
fffff800`8e56b000 fffff800`8e5d7000   fwpkclnt fwpkclnt.sys Sun Sep 07 21:51:02 2014 (540D0B86)
fffff802`d4f95000 fffff802`d5005000   hal      hal.dll      Sun Jun 01 18:49:12 2014 (538BADE8)
fffff800`903e1000 fffff800`903fa000   HDAudBus HDAudBus.sys Thu Jul 24 07:45:39 2014 (53D0F1E3)
fffff800`90627000 fffff800`9068d000   HdAudio  HdAudio.sys  Thu Aug 22 07:38:19 2013 (5215F82B)
fffff800`8d9c8000 fffff800`8d9e7000   HIDCLASS HIDCLASS.SYS Thu Mar 06 04:24:40 2014 (53183ED8)
fffff800`905f8000 fffff800`905fff00   HIDPARSE HIDPARSE.SYS Thu Aug 22 07:40:26 2013 (5215F8AA)
fffff800`8efde000 fffff800`8efec000   hidusb   hidusb.sys   Thu Mar 06 04:24:14 2014 (53183EBE)
fffff800`90c39000 fffff800`90d33000   HTTP     HTTP.sys     Mon Jan 27 14:48:02 2014 (52E6B7F2)
fffff800`8e6e6000 fffff800`8e6f5000   intelpep intelpep.sys Wed Oct 08 03:33:44 2014 (5434E8D8)
fffff800`8e7ae000 fffff800`8e7be000   kbdclass kbdclass.sys Thu Aug 22 07:39:23 2013 (5215F86B)
fffff800`8efec000 fffff800`8effa000   kbdhid   kbdhid.sys   Thu Aug 22 07:39:13 2013 (5215F861)
fffff802`d3bb6000 fffff802`d3bbf000   kdcom    kdcom.dll    Thu Aug 22 07:40:43 2013 (5215F8BB)
fffff800`8edd6000 fffff800`8ede1000   kdnic    kdnic.sys    Thu Aug 22 07:38:26 2013 (5215F832)
fffff800`906b7000 fffff800`90705000   ks       ks.sys       Fri Jul 04 08:58:59 2014 (53B6A513)
fffff800`8ddc2000 fffff800`8ddde000   ksecdd   ksecdd.sys   Sat Sep 21 03:59:44 2013 (523D51F0)
fffff800`8e1be000 fffff800`8e1ef000   ksecpkg  ksecpkg.sys  Sun Jan 11 22:01:17 2015 (54B338FD)
fffff800`90705000 fffff800`9070a300   ksthunk  ksthunk.sys  Thu Aug 22 07:39:31 2013 (5215F873)
fffff800`8d9e7000 fffff800`8d9fb000   lltdio   lltdio.sys   Thu Aug 22 07:36:18 2013 (5215F7B2)
fffff800`8d800000 fffff800`8d824000   luafv    luafv.sys    Sat Feb 22 07:14:25 2014 (530894A1)
fffff800`8d624000 fffff800`8d63f000   mcupdate mcupdate.dll Thu Aug 22 08:39:42 2013 (5216068E)
fffff800`8db13000 fffff800`8db21000   monitor  monitor.sys  Thu Aug 22 07:36:37 2013 (5215F7C5)
fffff800`8e1ef000 fffff800`8e1ff000   mouclass mouclass.sys Thu Aug 22 07:39:13 2013 (5215F861)
fffff800`8e017000 fffff800`8e024000   mouhid   mouhid.sys   Thu Aug 22 07:39:13 2013 (5215F861)
fffff800`8dc6a000 fffff800`8dc85000   mountmgr mountmgr.sys Thu Aug 22 07:40:04 2013 (5215F894)
fffff800`90d53000 fffff800`90d6a000   mpsdrv   mpsdrv.sys   Thu Aug 22 07:36:06 2013 (5215F7A6)
fffff800`90d6a000 fffff800`90dd6000   mrxsmb   mrxsmb.sys   Wed Apr 30 02:41:44 2014 (53609B28)
fffff800`90eec000 fffff800`90f37000   mrxsmb10 mrxsmb10.sys Thu Mar 06 04:19:36 2014 (53183DA8)
fffff800`90c00000 fffff800`90c39000   mrxsmb20 mrxsmb20.sys Thu Jun 19 19:37:24 2014 (53A37434)
fffff800`8ebd2000 fffff800`8ebde000   Msfs     Msfs.SYS     Thu Aug 22 07:40:24 2013 (5215F8A8)
fffff800`8db21000 fffff800`8db2b000   msisadrv msisadrv.sys Thu Aug 22 07:39:03 2013 (5215F857)
fffff800`8d777000 fffff800`8d7d4000   msrpc    msrpc.sys    Thu Aug 22 07:39:22 2013 (5215F86A)
fffff800`8eda4000 fffff800`8edb0000   mssmbios mssmbios.sys Thu Aug 22 07:39:41 2013 (5215F87D)
fffff800`8e6cf000 fffff800`8e6e6000   mup      mup.sys      Thu Aug 22 07:40:28 2013 (5215F8AC)
fffff800`8e02f000 fffff800`8e146000   ndis     ndis.sys     Mon Feb 02 19:03:15 2015 (54D01043)
fffff800`90733000 fffff800`9073e000   NdisVirtualBus NdisVirtualBus.sys Thu Aug 22 07:36:25 2013 (5215F7B9)
fffff800`90f37000 fffff800`90f54000   Ndu      Ndu.sys      Thu Aug 22 07:35:42 2013 (5215F78E)
fffff800`8ed09000 fffff800`8ed1a000   netbios  netbios.sys  Thu Aug 22 07:38:58 2013 (5215F852)
fffff800`8ec01000 fffff800`8ec4d000   netbt    netbt.sys    Thu Aug 22 07:37:01 2013 (5215F7DD)
fffff800`8e146000 fffff800`8e1be000   NETIO    NETIO.SYS    Tue Sep 09 04:35:50 2014 (540EBBE6)
fffff800`8ebbe000 fffff800`8ebd2000   Npfs     Npfs.SYS     Thu Aug 22 07:40:25 2013 (5215F8A9)
fffff800`8ed98000 fffff800`8eda4000   npsvctrig npsvctrig.sys Thu Aug 22 07:38:22 2013 (5215F82E)
fffff800`8ed8a000 fffff800`8ed98000   nsiproxy nsiproxy.sys Thu Aug 22 07:36:34 2013 (5215F7C2)
fffff802`d4801000 fffff802`d4f95000   nt       ntkrnlmp.exe Tue Jan 27 19:52:02 2015 (54C832B2)
fffff800`8de00000 fffff800`8dff6000   Ntfs     Ntfs.sys     Thu Jul 24 03:30:36 2014 (53D0B61C)
fffff800`8e7f4000 fffff800`8e7fd000   Null     Null.SYS     Thu Aug 22 07:40:24 2013 (5215F8A8)
fffff800`9046d000 fffff800`905ec000   P17      P17.sys      Tue Apr 21 02:12:47 2009 (49ED63DF)
fffff800`8ecdf000 fffff800`8ed09000   pacer    pacer.sys    Thu Aug 22 07:36:06 2013 (5215F7A6)
fffff800`8db9c000 fffff800`8dbb4000   partmgr  partmgr.sys  Thu Aug 22 07:40:20 2013 (5215F8A4)
fffff800`8db2b000 fffff800`8db73000   pci      pci.sys      Thu Jul 24 07:45:24 2014 (53D0F1D4)
fffff800`8ddde000 fffff800`8ddee000   pcw      pcw.sys      Thu Aug 22 04:46:34 2013 (5215CFEA)
fffff800`8db80000 fffff800`8db9c000   pdc      pdc.sys      Wed Oct 08 01:21:59 2014 (5434C9F7)
fffff800`90f54000 fffff800`90ffd000   peauth   peauth.sys   Sat Feb 22 07:09:37 2014 (53089381)
fffff800`90400000 fffff800`90447000   portcls  portcls.sys  Sat Feb 22 07:11:25 2014 (530893ED)
fffff800`8d6d0000 fffff800`8d6e5000   PSHED    PSHED.dll    Sat Sep 14 09:57:19 2013 (52346B3F)
fffff800`8ed1a000 fffff800`8ed8a000   rdbss    rdbss.sys    Tue Dec 17 02:21:22 2013 (52AFFB72)
fffff800`90740000 fffff800`9074b000   rdpbus   rdpbus.sys   Thu Aug 22 07:38:52 2013 (5215F84C)
fffff800`8e689000 fffff800`8e6cf000   rdyboost rdyboost.sys Sat Feb 22 07:13:40 2014 (53089474)
fffff800`8d7d4000 fffff800`8d7ec000   rspndr   rspndr.sys   Thu Aug 22 07:36:34 2013 (5215F7C2)
fffff800`8f000000 fffff800`8f0ca000   Rt630x64 Rt630x64.sys Fri Jun 21 05:29:10 2013 (51C41CE6)
fffff800`90e00000 fffff800`90e0b000   secdrv   secdrv.SYS   Wed Sep 13 09:18:38 2006 (4508052E)
fffff800`8f0e9000 fffff800`8f0f6000   serenum  serenum.sys  Thu Aug 22 07:40:17 2013 (5215F8A1)
fffff800`8ee87000 fffff800`8eea1000   serial   serial.sys   Thu Aug 22 07:40:08 2013 (5215F898)
fffff800`8da00000 fffff800`8da69000   spaceport spaceport.sys Thu Jul 24 07:45:14 2014 (53D0F1CA)
fffff800`910c0000 fffff800`9114e000   srv      srv.sys      Thu Jul 24 07:43:27 2014 (53D0F15F)
fffff800`91014000 fffff800`910c0000   srv2     srv2.sys     Thu Jul 24 07:44:19 2014 (53D0F193)
fffff800`90e0b000 fffff800`90e4e000   srvnet   srvnet.sys   Fri Jun 27 02:22:21 2014 (53AD0D9D)
fffff800`8dca2000 fffff800`8dd01000   storport storport.sys Sun Apr 06 10:08:55 2014 (53415FF7)
fffff800`9073e000 fffff800`9073f600   swenum   swenum.sys   Thu Aug 22 07:39:29 2013 (5215F871)
fffff800`8e2fa000 fffff800`8e56b000   tcpip    tcpip.sys    Sun Sep 07 21:52:24 2014 (540D0BD8)
fffff800`90e4e000 fffff800`90e60000   tcpipreg tcpipreg.sys Thu Mar 06 04:19:59 2014 (53183DBF)
fffff800`8ea00000 fffff800`8ea0e000   TDI      TDI.SYS      Thu Aug 22 07:39:01 2013 (5215F855)
fffff800`8ebde000 fffff800`8ebfe000   tdx      tdx.sys      Thu Aug 22 07:36:34 2013 (5215F7C2)
fffff800`8d6ae000 fffff800`8d6d0000   tm       tm.sys       Thu Aug 22 07:39:33 2013 (5215F875)
fffff960`0075d000 fffff960`00766000   TSDDD    TSDDD.dll    Thu Aug 22 07:40:32 2013 (5215F8B0)
fffff800`9114e000 fffff800`9117b000   tunnel   tunnel.sys   Thu Aug 22 07:35:45 2013 (5215F791)
fffff800`8e677000 fffff800`8e688000   umbus    umbus.sys    Thu Aug 22 07:38:59 2013 (5215F853)
fffff800`8e787000 fffff800`8e7ae000   usbccgp  usbccgp.sys  Thu Jul 24 07:44:51 2014 (53D0F1B3)
fffff800`907b5000 fffff800`907c1000   USBD     USBD.SYS     Sat May 31 02:31:17 2014 (53897735)
fffff800`8ee6f000 fffff800`8ee87000   usbehci  usbehci.sys  Sat May 31 02:29:54 2014 (538976E2)
fffff800`8f0ca000 fffff800`8f0dc000   usbfilter usbfilter.sys Mon Feb 17 01:23:43 2014 (5301AAEF)
fffff800`9074b000 fffff800`907b5000   usbhub   usbhub.sys   Thu Jul 24 07:45:29 2014 (53D0F1D9)
fffff800`8f0dc000 fffff800`8f0e9000   usbohci  usbohci.sys  Thu Aug 22 07:39:27 2013 (5215F86F)
fffff800`8ee00000 fffff800`8ee6f000   USBPORT  USBPORT.SYS  Sat May 31 02:30:25 2014 (53897701)
fffff800`8db73000 fffff800`8db80000   vdrvroot vdrvroot.sys Thu Aug 22 07:38:49 2013 (5215F849)
fffff800`8da69000 fffff800`8da7e000   volmgr   volmgr.sys   Thu Aug 22 07:39:53 2013 (5215F889)
fffff800`8dc0b000 fffff800`8dc6a000   volmgrx  volmgrx.sys  Thu Aug 22 07:40:23 2013 (5215F8A7)
fffff800`8e2a8000 fffff800`8e2f7000   volsnap  volsnap.sys  Wed Jun 18 18:41:28 2014 (53A21598)
fffff800`8eb9a000 fffff800`8ebac000   watchdog watchdog.sys Sat Feb 22 07:14:39 2014 (530894AF)
fffff800`8d831000 fffff800`8d900000   Wdf01000 Wdf01000.sys Thu Aug 22 07:38:56 2013 (5215F850)
fffff800`8dbb4000 fffff800`8dbf7000   WdFilter WdFilter.sys Fri Jan 30 05:20:58 2015 (54CB5B0A)
fffff800`8d900000 fffff800`8d911000   WDFLDR   WDFLDR.SYS   Thu Aug 22 07:39:03 2013 (5215F857)
fffff800`9117b000 fffff800`9119a000   WdNisDrv WdNisDrv.sys Fri Jan 30 05:21:48 2015 (54CB5B3C)
fffff800`8d63f000 fffff800`8d64d000   werkernel werkernel.sys Thu Aug 22 07:40:24 2013 (5215F8A8)
fffff800`8e5d7000 fffff800`8e5fc000   wfplwfs  wfplwfs.sys  Sat Mar 08 04:22:45 2014 (531AE165)
fffff960`00139000 fffff960`0054f000   win32k   win32k.sys   Wed Feb 25 18:26:26 2015 (54EE5A22)
fffff800`9070b000 fffff800`90715000   wmiacpi  wmiacpi.sys  Thu Aug 22 07:40:04 2013 (5215F894)
fffff800`8d9be000 fffff800`8d9c8000   WMILIB   WMILIB.SYS   Thu Aug 22 07:40:23 2013 (5215F8A7)
fffff800`8dd97000 fffff800`8ddc2000   Wof      Wof.sys      Thu Mar 13 04:27:29 2014 (53216BF1)
fffff800`8d929000 fffff800`8d934000   WppRecorder WppRecorder.sys Thu Aug 22 07:39:40 2013 (5215F87C)

Unloaded modules:
fffff800`8e787000 fffff800`8e793000   dump_storpor
    Timestamp: unavailable (00000000)
    Checksum:  00000000
    ImageSize:  0000C000
fffff800`8e793000 fffff800`8e7b0000   dump_amd_sat
    Timestamp: unavailable (00000000)
    Checksum:  00000000
    ImageSize:  0001D000
fffff800`8e7b0000 fffff800`8e7c6000   dump_dumpfve
    Timestamp: unavailable (00000000)
    Checksum:  00000000
    ImageSize:  00016000
fffff800`8f0e9000 fffff800`8f0f3000   amdkmafd.sys
    Timestamp: unavailable (00000000)
    Checksum:  00000000
    ImageSize:  0000A000
fffff800`903d7000 fffff800`903e1000   amdkmafd.sys
    Timestamp: unavailable (00000000)
    Checksum:  00000000
    ImageSize:  0000A000
fffff800`8edd6000 fffff800`8ede6000   dam.sys 
    Timestamp: unavailable (00000000)
    Checksum:  00000000
    ImageSize:  00010000
fffff800`8db13000 fffff800`8db21000   WdBoot.sys
    Timestamp: unavailable (00000000)
    Checksum:  00000000
    ImageSize:  0000E000
fffff800`8e6f5000 fffff800`8e701000   hwpolicy.sys
    Timestamp: unavailable (00000000)
    Checksum:  00000000
    ImageSize:  0000C000
quit:
¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨``



   --- E O J ---   2015 Mar 31 12:14:59 PM    _99-debug   Copyright 2012 Sysnative Forums
   --- E O J ---   2015 Mar 31 12:14:59 PM    _99-debug   Copyright 2012 Sysnative Forums
   --- E O J ---   2015 Mar 31 12:14:59 PM    _99-debug   Copyright 2012 Sysnative Forums



reference thread at TSF Various Different BSoD - Tech Support Forum
 

Has Sysnative Forums helped you? Please consider donating to help us support the site!

Back
Top