BSOD troubles, again.

Page 2 of 6 FirstFirst 1234 ... LastLast

  1. Posts : 75
    Windows 7
    Thread Starter
       #11

    not seen this bsod message before I don't believe.

    If I do a re-install of windows and it starts blue screening I guess that'll pinpoint to a hardware problem I guess, probably the hard drive again. Ebuyer seem to have a habit of sending me faulty hard drives, 2 in the past year, 1 faulty ram, 1 faulty power supply, 1 faulty cooling fan.

    No luck.
    Last edited by Gingermadman; 13 Sep 2010 at 13:58.
      My Computer


  2. Posts : 11,990
    Windows 7 Ultimate 32 bit
       #12

    That is not a routine error code for sure.

    Error code 20, KERNEL_APC_PENDING_DURING_EXIT - usually caused by device driver, kernel.

    Code:
    Kernel base = 0xfffff800`0281f000 PsLoadedModuleList = 0xfffff800`02a5ce50
    Debug session time: Mon Sep 13 12:59:01.224 2010 (GMT-4)
    System Uptime: 0 days 4:38:09.034
    Loading Kernel Symbols
    ...............................................................
    ................................................................
    .....................
    Loading User Symbols
    Loading unloaded module list
    ....
    *******************************************************************************
    *                                                                             *
    *                        Bugcheck Analysis                                    *
    *                                                                             *
    *******************************************************************************
    
    Use !analyze -v to get detailed debugging information.
    
    BugCheck 20, {0, ffff0000, 0, 1}
    
    Probably caused by : ntkrnlmp.exe ( nt!PspExitThread+a1 )
    
    Followup: MachineOwner
    ---------
    
    3: kd> !analyze -v
    *******************************************************************************
    *                                                                             *
    *                        Bugcheck Analysis                                    *
    *                                                                             *
    *******************************************************************************
    
    KERNEL_APC_PENDING_DURING_EXIT (20)
    The key data item is the thread's APC disable count.
    If this is non-zero, then this is the source of the problem.
    The APC disable count is decremented each time a driver calls
    KeEnterCriticalRegion, FsRtlEnterFileSystem, or acquires a mutex.  The APC
    disable count is incremented each time a driver calls KeLeaveCriticalRegion,
    FsRtlExitFileSystem, or KeReleaseMutex.  Since these calls should always be in
    pairs, this value should be zero when a thread exits.  A negative value
    indicates that a driver has disabled APC calls without re-enabling them.  A
    positive value indicates that the reverse is true.
    If you ever see this error, be very suspicious of all drivers installed on the
    machine -- especially unusual or non-standard drivers.  Third party file
    system redirectors are especially suspicious since they do not generally
    receive the heavy duty testing that NTFS, FAT, RDR, etc receive.
    This current IRQL should also be 0.  If it is not, that a driver's
    cancelation routine can cause this bugcheck by returning at an elevated
    IRQL.  Always attempt to note what you were doing/closing at the
    time of the crash, and note all of the installed drivers at the time of
    the crash.  This symptom is usually a severe bug in a third party
    driver.
    Arguments:
    Arg1: 0000000000000000, The address of the APC found pending during exit.
    Arg2: 00000000ffff0000, The thread's APC disable count
    Arg3: 0000000000000000, The current IRQL
    Arg4: 0000000000000001
    
    Debugging Details:
    ------------------
    
    
    BUGCHECK_STR:  0x20_NULLAPC_SAPC_NEGATIVE
    
    CUSTOMER_CRASH_COUNT:  1
    
    DEFAULT_BUCKET_ID:  VISTA_DRIVER_FAULT
    
    PROCESS_NAME:  svchost.exe
    
    CURRENT_IRQL:  0
    
    EXCEPTION_RECORD:  fffff880080e9030 -- (.exr 0xfffff880080e9030)
    ExceptionAddress: 0000000077432e20
       ExceptionCode: c0000005 (Access violation)
      ExceptionFlags: 00000000
    NumberParameters: 0
    
    TRAP_FRAME:  fffff880080e9c20 -- (.trap 0xfffff880080e9c20)
    Unable to read trap frame at fffff880`080e9c20
    
    LAST_CONTROL_TRANSFER:  from fffff80002b74541 to fffff8000288f740
    
    STACK_TEXT:  
    fffff880`080e8688 fffff800`02b74541 : 00000000`00000020 00000000`00000000 00000000`ffff0000 00000000`00000000 : nt!KeBugCheckEx
    fffff880`080e8690 fffff800`02b4c85b : 00000000`c0000005 00000000`00000001 fffffa80`071d8340 fffffa80`06655060 : nt!PspExitThread+0xa1
    fffff880`080e8750 fffff800`0288e993 : fffffa80`071d8340 00000000`c0000005 ffffdc0f`b26661fe fffffa80`06655060 : nt!NtTerminateProcess+0x25b
    fffff880`080e87d0 fffff800`0288af30 : fffff800`028c9dbc fffff880`080e9030 fffff880`080e8ea0 fffff880`080e9c20 : nt!KiSystemServiceCopyEnd+0x13
    fffff880`080e8968 fffff800`028c9dbc : fffff880`080e9030 fffff880`080e8ea0 fffff880`080e9c20 fffffa80`06655060 : nt!KiServiceLinkage
    fffff880`080e8970 fffff800`02bd720f : fffff880`080e9030 fffffa80`06655060 fffff880`080e9c20 00000000`c0000005 : nt!KiDispatchException+0x53b
    fffff880`080e9000 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt! ?? ::NNGAKEGL::`string'+0x3474b
    
    
    STACK_COMMAND:  kb
    
    FOLLOWUP_IP: 
    nt!PspExitThread+a1
    fffff800`02b74541 cc              int     3
    
    SYMBOL_STACK_INDEX:  1
    
    SYMBOL_NAME:  nt!PspExitThread+a1
    
    FOLLOWUP_NAME:  MachineOwner
    
    MODULE_NAME: nt
    
    IMAGE_NAME:  ntkrnlmp.exe
    
    DEBUG_FLR_IMAGE_TIMESTAMP:  4c1c44a9
    
    FAILURE_BUCKET_ID:  X64_0x20_NULLAPC_SAPC_NEGATIVE_nt!PspExitThread+a1
    
    BUCKET_ID:  X64_0x20_NULLAPC_SAPC_NEGATIVE_nt!PspExitThread+a1
    
    Followup: MachineOwner
    ---------
    If you ever see this error, be very suspicious of all drivers installed on the machine -- especially unusual or non-standard drivers...

    Always attempt to note what you were doing/closing at the time of the crash, and note all of the installed drivers at the time of the crash. This symptom is usually a severe bug in a third party driver.
    While it does not tell us which driver, it tells us where to start looking. Here is the driver list from the dump:
    Code:
    start             end                 module name
    fffff880`13c00000 fffff880`13c3e000   1394ohci 1394ohci.sys Mon Jul 13 20:07:12 2009 (4A5BCC30)
    fffff880`00eac000 fffff880`00f03000   ACPI     ACPI.sys     Mon Jul 13 19:19:34 2009 (4A5BC106)
    fffff880`02a00000 fffff880`02a8a000   afd      afd.sys      Mon Jul 13 19:21:40 2009 (4A5BC184)
    fffff880`13c4e000 fffff880`13c64000   AgileVpn AgileVpn.sys Mon Jul 13 20:10:24 2009 (4A5BCCF0)
    fffff880`02ab7000 fffff880`02acc000   amdppm   amdppm.sys   Mon Jul 13 19:19:25 2009 (4A5BC0FD)
    fffff880`00e4d000 fffff880`00e58000   amdxata  amdxata.sys  Tue May 19 13:56:59 2009 (4A12F2EB)
    fffff880`03e00000 fffff880`03e08000   ASACPI   ASACPI.sys   Wed May 13 21:25:17 2009 (4A0B72FD)
    fffff880`01d70000 fffff880`01d79000   aswFsBlk aswFsBlk.SYS Tue Sep 07 10:47:09 2010 (4C86506D)
    fffff880`01d36000 fffff880`01d70000   aswMonFlt aswMonFlt.sys Tue Sep 07 10:47:32 2010 (4C865084)
    fffff880`02a8a000 fffff880`02a94000   aswRdr   aswRdr.SYS   Tue Sep 07 10:47:47 2010 (4C865093)
    fffff880`02a94000 fffff880`02ab7000   aswSP    aswSP.SYS    Tue Sep 07 10:52:07 2010 (4C865197)
    fffff880`02bc6000 fffff880`02bd6000   aswTdi   aswTdi.SYS   Tue Sep 07 10:52:27 2010 (4C8651AB)
    fffff880`00e1a000 fffff880`00e23000   atapi    atapi.sys    Mon Jul 13 19:19:47 2009 (4A5BC113)
    fffff880`00e23000 fffff880`00e4d000   ataport  ataport.SYS  Mon Jul 13 19:19:52 2009 (4A5BC118)
    fffff880`02b1a000 fffff880`02b21000   Beep     Beep.SYS     Mon Jul 13 20:00:13 2009 (4A5BCA8D)
    fffff880`03c00000 fffff880`03c11000   blbdrive blbdrive.sys Mon Jul 13 19:35:59 2009 (4A5BC4DF)
    fffff880`05d11000 fffff880`05d2f000   bowser   bowser.sys   Mon Jul 13 19:23:50 2009 (4A5BC206)
    fffff960`00720000 fffff960`00747000   cdd      cdd.dll      unavailable (00000000)
    fffff880`02ae7000 fffff880`02b11000   cdrom    cdrom.sys    Mon Jul 13 19:19:54 2009 (4A5BC11A)
    fffff880`00d37000 fffff880`00df7000   CI       CI.dll       Mon Jul 13 21:32:13 2009 (4A5BE01D)
    fffff880`011c4000 fffff880`011f4000   CLASSPNP CLASSPNP.SYS Mon Jul 13 19:19:58 2009 (4A5BC11E)
    fffff880`00cd9000 fffff880`00d37000   CLFS     CLFS.SYS     Mon Jul 13 19:19:57 2009 (4A5BC11D)
    fffff880`01151000 fffff880`011c4000   cng      cng.sys      Mon Jul 13 19:49:40 2009 (4A5BC814)
    fffff880`13c3e000 fffff880`13c4e000   CompositeBus CompositeBus.sys Mon Jul 13 20:00:33 2009 (4A5BCAA1)
    fffff880`05de5000 fffff880`05dee000   cpuz134_x64 cpuz134_x64.sys Fri Jul 09 07:16:58 2010 (4C37052A)
    fffff880`04649000 fffff880`04657000   crashdmp crashdmp.sys Mon Jul 13 20:01:01 2009 (4A5BCABD)
    fffff880`03d5d000 fffff880`03de0000   csc      csc.sys      Mon Jul 13 19:24:26 2009 (4A5BC22A)
    fffff880`03de0000 fffff880`03dfe000   dfsc     dfsc.sys     Mon Jul 13 19:23:44 2009 (4A5BC200)
    fffff880`03d4e000 fffff880`03d5d000   discache discache.sys Mon Jul 13 19:37:18 2009 (4A5BC52E)
    fffff880`01224000 fffff880`0123a000   disk     disk.sys     Mon Jul 13 19:19:57 2009 (4A5BC11D)
    fffff880`047d1000 fffff880`047f3000   drmk     drmk.sys     Mon Jul 13 21:01:25 2009 (4A5BD8E5)
    fffff880`02acc000 fffff880`02ad5000   dump_atapi dump_atapi.sys Mon Jul 13 19:19:47 2009 (4A5BC113)
    fffff880`13caf000 fffff880`13cbb000   dump_dumpata dump_dumpata.sys Mon Jul 13 19:19:47 2009 (4A5BC113)
    fffff880`010c0000 fffff880`010d3000   dump_dumpfve dump_dumpfve.sys Mon Jul 13 19:21:51 2009 (4A5BC18F)
    fffff880`0463d000 fffff880`04649000   Dxapi    Dxapi.sys    Mon Jul 13 19:38:28 2009 (4A5BC574)
    fffff880`03e13000 fffff880`03f07000   dxgkrnl  dxgkrnl.sys  Thu Oct 01 21:00:14 2009 (4AC5509E)
    fffff880`03f07000 fffff880`03f4d000   dxgmms1  dxgmms1.sys  Mon Jul 13 19:38:32 2009 (4A5BC578)
    fffff880`010df000 fffff880`010f3000   fileinfo fileinfo.sys Mon Jul 13 19:34:25 2009 (4A5BC481)
    fffff880`00e58000 fffff880`00ea4000   fltmgr   fltmgr.sys   Mon Jul 13 19:19:59 2009 (4A5BC11F)
    fffff880`01211000 fffff880`0121b000   Fs_Rec   Fs_Rec.sys   Mon Jul 13 19:19:45 2009 (4A5BC111)
    fffff880`01086000 fffff880`010c0000   fvevol   fvevol.sys   Fri Sep 25 22:34:26 2009 (4ABD7DB2)
    fffff880`015ae000 fffff880`015f8000   fwpkclnt fwpkclnt.sys Mon Jul 13 19:21:08 2009 (4A5BC164)
    fffff880`03ff1000 fffff880`03ffe000   GEARAspiWDM GEARAspiWDM.sys Mon May 18 08:17:04 2009 (4A1151C0)
    fffff800`02dfb000 fffff800`02e44000   hal      hal.dll      Mon Jul 13 21:27:36 2009 (4A5BDF08)
    fffff880`14954000 fffff880`14978000   HDAudBus HDAudBus.sys Mon Jul 13 20:06:13 2009 (4A5BCBF5)
    fffff880`04775000 fffff880`047d1000   HdAudio  HdAudio.sys  Mon Jul 13 20:06:59 2009 (4A5BCC23)
    fffff880`01cd6000 fffff880`01cef000   HIDCLASS HIDCLASS.SYS Mon Jul 13 20:06:21 2009 (4A5BCBFD)
    fffff880`01cef000 fffff880`01cf7080   HIDPARSE HIDPARSE.SYS Mon Jul 13 20:06:17 2009 (4A5BCBF9)
    fffff880`01cc8000 fffff880`01cd6000   hidusb   hidusb.sys   Mon Jul 13 20:06:22 2009 (4A5BCBFE)
    fffff880`05c49000 fffff880`05d11000   HTTP     HTTP.sys     Mon Jul 13 19:22:16 2009 (4A5BC1A8)
    fffff880`0121b000 fffff880`01224000   hwpolicy hwpolicy.sys Mon Jul 13 19:19:22 2009 (4A5BC0FA)
    fffff880`14995000 fffff880`149b3000   i8042prt i8042prt.sys Mon Jul 13 19:19:57 2009 (4A5BC11D)
    fffff880`149b3000 fffff880`149c2000   kbdclass kbdclass.sys Mon Jul 13 19:19:50 2009 (4A5BC116)
    fffff800`00baf000 fffff800`00bb9000   kdcom    kdcom.dll    Mon Jul 13 21:31:07 2009 (4A5BDFDB)
    fffff880`046b1000 fffff880`046f4000   ks       ks.sys       Mon Jul 13 20:00:31 2009 (4A5BCA9F)
    fffff880`013de000 fffff880`013f8000   ksecdd   ksecdd.sys   Mon Jul 13 19:20:54 2009 (4A5BC156)
    fffff880`01460000 fffff880`0148b000   ksecpkg  ksecpkg.sys  Fri Dec 11 01:03:32 2009 (4B21E0B4)
    fffff880`047f3000 fffff880`047f8200   ksthunk  ksthunk.sys  Mon Jul 13 20:00:19 2009 (4A5BCA93)
    fffff880`01d9a000 fffff880`01daf000   lltdio   lltdio.sys   Mon Jul 13 20:08:50 2009 (4A5BCC92)
    fffff880`01d13000 fffff880`01d36000   luafv    luafv.sys    Mon Jul 13 19:26:13 2009 (4A5BC295)
    fffff880`00cb8000 fffff880`00cc5000   mcupdate_AuthenticAMD mcupdate_AuthenticAMD.dll Mon Jul 13 21:29:09 2009 (4A5BDF65)
    fffff880`01d05000 fffff880`01d13000   monitor  monitor.sys  Mon Jul 13 19:38:52 2009 (4A5BC58C)
    fffff880`046a0000 fffff880`046af000   mouclass mouclass.sys Mon Jul 13 19:19:50 2009 (4A5BC116)
    fffff880`01cf8000 fffff880`01d05000   mouhid   mouhid.sys   Mon Jul 13 20:00:20 2009 (4A5BCA94)
    fffff880`00e00000 fffff880`00e1a000   mountmgr mountmgr.sys Mon Jul 13 19:19:54 2009 (4A5BC11A)
    fffff880`05d2f000 fffff880`05d47000   mpsdrv   mpsdrv.sys   Mon Jul 13 20:08:25 2009 (4A5BCC79)
    fffff880`05d47000 fffff880`05d74000   mrxsmb   mrxsmb.sys   Sat Feb 27 02:52:19 2010 (4B88CF33)
    fffff880`05d74000 fffff880`05dc2000   mrxsmb10 mrxsmb10.sys Sat Feb 27 02:52:28 2010 (4B88CF3C)
    fffff880`05dc2000 fffff880`05de5000   mrxsmb20 mrxsmb20.sys Sat Feb 27 02:52:26 2010 (4B88CF3A)
    fffff880`02b7f000 fffff880`02b8a000   Msfs     Msfs.SYS     Mon Jul 13 19:19:47 2009 (4A5BC113)
    fffff880`00f0c000 fffff880`00f16000   msisadrv msisadrv.sys Mon Jul 13 19:19:26 2009 (4A5BC0FE)
    fffff880`010f3000 fffff880`01151000   msrpc    msrpc.sys    Mon Jul 13 19:21:32 2009 (4A5BC17C)
    fffff880`03d43000 fffff880`03d4e000   mssmbios mssmbios.sys Mon Jul 13 19:31:10 2009 (4A5BC3BE)
    fffff880`014aa000 fffff880`014bc000   mup      mup.sys      Mon Jul 13 19:23:45 2009 (4A5BC201)
    fffff880`014bc000 fffff880`015ae000   ndis     ndis.sys     Mon Jul 13 19:21:40 2009 (4A5BC184)
    fffff880`13c88000 fffff880`13c94000   ndistapi ndistapi.sys Mon Jul 13 20:10:00 2009 (4A5BCCD8)
    fffff880`149ce000 fffff880`149fd000   ndiswan  ndiswan.sys  Mon Jul 13 20:10:11 2009 (4A5BCCE3)
    fffff880`04760000 fffff880`04775000   NDProxy  NDProxy.SYS  Mon Jul 13 20:10:05 2009 (4A5BCCDD)
    fffff880`03c8b000 fffff880`03c9a000   netbios  netbios.sys  Mon Jul 13 20:09:26 2009 (4A5BCCB6)
    fffff880`03c17000 fffff880`03c5c000   netbt    netbt.sys    Mon Jul 13 19:21:28 2009 (4A5BC178)
    fffff880`01400000 fffff880`01460000   NETIO    NETIO.SYS    Mon Jul 13 19:21:46 2009 (4A5BC18A)
    fffff880`02b8a000 fffff880`02b9b000   Npfs     Npfs.SYS     Mon Jul 13 19:19:48 2009 (4A5BC114)
    fffff880`03d37000 fffff880`03d43000   nsiproxy nsiproxy.sys Mon Jul 13 19:21:02 2009 (4A5BC15E)
    fffff800`0281f000 fffff800`02dfb000   nt       ntkrnlmp.exe Sat Jun 19 00:16:41 2010 (4C1C44A9)
    fffff880`0123b000 fffff880`013de000   Ntfs     Ntfs.sys     Mon Jul 13 19:20:47 2009 (4A5BC14F)
    fffff880`02b11000 fffff880`02b1a000   Null     Null.SYS     Mon Jul 13 19:19:37 2009 (4A5BC109)
    fffff880`14952000 fffff880`14953180   nvBridge nvBridge.kmd Fri Jul 09 17:07:54 2010 (4C378FAA)
    fffff880`13cc0000 fffff880`14951e00   nvlddmkm nvlddmkm.sys Fri Jul 09 17:15:58 2010 (4C37918E)
    fffff880`03c65000 fffff880`03c8b000   pacer    pacer.sys    Mon Jul 13 20:09:41 2009 (4A5BCCC5)
    fffff880`14978000 fffff880`14995000   parport  parport.sys  Mon Jul 13 20:00:40 2009 (4A5BCAA8)
    fffff880`00f56000 fffff880`00f6b000   partmgr  partmgr.sys  Mon Jul 13 19:19:58 2009 (4A5BC11E)
    fffff880`00f16000 fffff880`00f49000   pci      pci.sys      Mon Jul 13 19:19:51 2009 (4A5BC117)
    fffff880`00fdc000 fffff880`00fe3000   pciide   pciide.sys   Mon Jul 13 19:19:49 2009 (4A5BC115)
    fffff880`00fe3000 fffff880`00ff3000   PCIIDEX  PCIIDEX.SYS  Mon Jul 13 19:19:48 2009 (4A5BC114)
    fffff880`01200000 fffff880`01211000   pcw      pcw.sys      Mon Jul 13 19:19:27 2009 (4A5BC0FF)
    fffff880`01c00000 fffff880`01ca6000   peauth   peauth.sys   Mon Jul 13 21:01:19 2009 (4A5BD8DF)
    fffff880`04600000 fffff880`0463d000   portcls  portcls.sys  Mon Jul 13 20:06:27 2009 (4A5BCC03)
    fffff880`00cc5000 fffff880`00cd9000   PSHED    PSHED.dll    Mon Jul 13 21:32:23 2009 (4A5BE027)
    fffff880`13c64000 fffff880`13c88000   rasl2tp  rasl2tp.sys  Mon Jul 13 20:10:11 2009 (4A5BCCE3)
    fffff880`13c94000 fffff880`13caf000   raspppoe raspppoe.sys Mon Jul 13 20:10:17 2009 (4A5BCCE9)
    fffff880`0465a000 fffff880`0467b000   raspptp  raspptp.sys  Mon Jul 13 20:10:18 2009 (4A5BCCEA)
    fffff880`0467b000 fffff880`04695000   rassstp  rassstp.sys  Mon Jul 13 20:10:25 2009 (4A5BCCF1)
    fffff880`03ce6000 fffff880`03d37000   rdbss    rdbss.sys    Mon Jul 13 19:24:09 2009 (4A5BC219)
    fffff880`04695000 fffff880`046a0000   rdpbus   rdpbus.sys   Mon Jul 13 20:17:46 2009 (4A5BCEAA)
    fffff880`02b64000 fffff880`02b6d000   RDPCDD   RDPCDD.sys   Mon Jul 13 20:16:34 2009 (4A5BCE62)
    fffff880`02b6d000 fffff880`02b76000   rdpencdd rdpencdd.sys Mon Jul 13 20:16:34 2009 (4A5BCE62)
    fffff880`02b76000 fffff880`02b7f000   rdprefmp rdprefmp.sys Mon Jul 13 20:16:35 2009 (4A5BCE63)
    fffff880`0104c000 fffff880`01086000   rdyboost rdyboost.sys Mon Jul 13 19:34:34 2009 (4A5BC48A)
    fffff880`01daf000 fffff880`01dc7000   rspndr   rspndr.sys   Mon Jul 13 20:08:50 2009 (4A5BCC92)
    fffff880`03f4d000 fffff880`03f7f000   Rt64win7 Rt64win7.sys Thu Feb 26 04:04:13 2009 (49A65B0D)
    fffff880`05dee000 fffff880`05df9000   secdrv   secdrv.SYS   Wed Sep 13 09:18:38 2006 (4508052E)
    fffff880`149c2000 fffff880`149ce000   serenum  serenum.sys  Mon Jul 13 20:00:33 2009 (4A5BCAA1)
    fffff880`03c9a000 fffff880`03cb7000   serial   serial.sys   Mon Jul 13 20:00:40 2009 (4A5BCAA8)
    fffff880`014a3000 fffff880`014aa000   speedfan speedfan.sys Sun Sep 24 09:26:48 2006 (45168798)
    fffff880`0149b000 fffff880`014a3000   spldr    spldr.sys    Mon May 11 12:56:27 2009 (4A0858BB)
    fffff880`0627e000 fffff880`06314000   srv      srv.sys      Mon Jun 21 23:21:11 2010 (4C202C27)
    fffff880`06216000 fffff880`0627e000   srv2     srv2.sys     Mon Jun 21 23:20:47 2010 (4C202C0F)
    fffff880`05c00000 fffff880`05c2d000   srvnet   srvnet.sys   Mon Jun 21 23:20:32 2010 (4C202C00)
    fffff880`046af000 fffff880`046b0480   swenum   swenum.sys   Mon Jul 13 20:00:18 2009 (4A5BCA92)
    fffff880`01601000 fffff880`017fe000   tcpip    tcpip.sys    Sun Jun 13 23:39:04 2010 (4C15A458)
    fffff880`05c2d000 fffff880`05c3f000   tcpipreg tcpipreg.sys Mon Jul 13 20:09:49 2009 (4A5BCCCD)
    fffff880`02bb9000 fffff880`02bc6000   TDI      TDI.SYS      Mon Jul 13 19:21:18 2009 (4A5BC16E)
    fffff880`02b9b000 fffff880`02bb9000   tdx      tdx.sys      Mon Jul 13 19:21:15 2009 (4A5BC16B)
    fffff880`03cd2000 fffff880`03ce6000   termdd   termdd.sys   Mon Jul 13 20:16:36 2009 (4A5BCE64)
    fffff960`005c0000 fffff960`005ca000   TSDDD    TSDDD.dll    Mon Jul 13 20:16:34 2009 (4A5BCE62)
    fffff880`02bd6000 fffff880`02bfc000   tunnel   tunnel.sys   Mon Jul 13 20:09:37 2009 (4A5BCCC1)
    fffff880`046f4000 fffff880`04706000   umbus    umbus.sys    Mon Jul 13 20:06:56 2009 (4A5BCC20)
    fffff880`01ca9000 fffff880`01cc6000   usbccgp  usbccgp.sys  Mon Jul 13 20:06:45 2009 (4A5BCC15)
    fffff880`01cc6000 fffff880`01cc7f00   USBD     USBD.SYS     Mon Jul 13 20:06:23 2009 (4A5BCBFF)
    fffff880`03fe0000 fffff880`03ff1000   usbehci  usbehci.sys  Mon Jul 13 20:06:30 2009 (4A5BCC06)
    fffff880`04706000 fffff880`04760000   usbhub   usbhub.sys   Mon Jul 13 20:07:09 2009 (4A5BCC2D)
    fffff880`03f7f000 fffff880`03f8a000   usbohci  usbohci.sys  Mon Jul 13 20:06:30 2009 (4A5BCC06)
    fffff880`03f8a000 fffff880`03fe0000   USBPORT  USBPORT.SYS  Mon Jul 13 20:06:31 2009 (4A5BCC07)
    fffff880`00f49000 fffff880`00f56000   vdrvroot vdrvroot.sys Mon Jul 13 20:01:31 2009 (4A5BCADB)
    fffff880`02b21000 fffff880`02b2f000   vga      vga.sys      Mon Jul 13 19:38:47 2009 (4A5BC587)
    fffff880`02b2f000 fffff880`02b54000   VIDEOPRT VIDEOPRT.SYS Mon Jul 13 19:38:51 2009 (4A5BC58B)
    fffff880`0148b000 fffff880`0149b000   vmstorfl vmstorfl.sys Mon Jul 13 19:42:54 2009 (4A5BC67E)
    fffff880`00f6b000 fffff880`00f80000   volmgr   volmgr.sys   Mon Jul 13 19:19:57 2009 (4A5BC11D)
    fffff880`00f80000 fffff880`00fdc000   volmgrx  volmgrx.sys  Mon Jul 13 19:20:33 2009 (4A5BC141)
    fffff880`01000000 fffff880`0104c000   volsnap  volsnap.sys  Mon Jul 13 19:20:08 2009 (4A5BC128)
    fffff880`03cb7000 fffff880`03cd2000   wanarp   wanarp.sys   Mon Jul 13 20:10:21 2009 (4A5BCCED)
    fffff880`02b54000 fffff880`02b64000   watchdog watchdog.sys Mon Jul 13 19:37:35 2009 (4A5BC53F)
    fffff880`00c00000 fffff880`00ca4000   Wdf01000 Wdf01000.sys Mon Jul 13 19:22:07 2009 (4A5BC19F)
    fffff880`00ca4000 fffff880`00cb3000   WDFLDR   WDFLDR.SYS   Mon Jul 13 19:19:54 2009 (4A5BC11A)
    fffff880`03c5c000 fffff880`03c65000   wfplwf   wfplwf.sys   Mon Jul 13 20:09:26 2009 (4A5BCCB6)
    fffff960`000b0000 fffff960`003bf000   win32k   win32k.sys   Sat Jun 19 00:31:59 2010 (4C1C483F)
    fffff880`03e08000 fffff880`03e11000   wmiacpi  wmiacpi.sys  Mon Jul 13 19:31:02 2009 (4A5BC3B6)
    fffff880`00f03000 fffff880`00f0c000   WMILIB   WMILIB.SYS   Mon Jul 13 19:19:51 2009 (4A5BC117)
    fffff880`01d79000 fffff880`01d9a000   WudfPf   WudfPf.sys   Mon Jul 13 20:05:37 2009 (4A5BCBD1)
    
    Unloaded modules:
    fffff880`010c0000 fffff880`010ce000   crashdmp.sys
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    fffff880`010ce000 fffff880`010da000   dump_ataport
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    fffff880`011f4000 fffff880`011fd000   dump_atapi.s
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    fffff880`02ad4000 fffff880`02ae7000   dump_dumpfve
        Timestamp: unavailable (00000000)
        Checksum:  00000000
    Though this dump certainly points to drivers, I think you also have an underlying hardware problem.

    This is a shot in the dark. Avast should not be causing a problem with Win 7 as a most third party antivirus programs do. I am going to recommend that you uninstall Avast for troubleshooting purposes using this tool: Info > Tool. Download and install Microsoft Security Essentials in its place. When you get your system running smoothly again, you can reinstall Avast. I just want to eliminate Avast as a possible cause.

    Now try enabling Driver Verifier again: Driver Verifier - Enable and Disable
    . Upload Driver Verifier enabled dumps.
      My Computer


  3. Posts : 75
    Windows 7
    Thread Starter
       #13

    I looked at my Ram Voltage and spotted it says "Ram OverVoltage" And it's set to 1.65V like it points out on the stick itself.

    This is the ram I'm using now

    Corsair 4GB (2x2GB) DDR3 1600MHz XMS3 Memory Kit.. | Ebuyer.com

    hmm, I never really knew how to set the voltage on my motherboard when I did it, but it ran fine for 2 weeks. So I'm just throwin guesses on this.

    Mobo is M4A785TD-V EVO.

    Is there any programs I can use to extensively test the hard drive? I've never had much luck with hard drives in the past.
      My Computer


  4. Posts : 11,990
    Windows 7 Ultimate 32 bit
       #14

    In the BIOS, try setting all of your voltages to default or automatic. I will get some of the Hardware guys to take a look at this thread. They are pros on the voltages and timings.

    Go to your hard drive manufacture' website and use their test for your hard drive.
      My Computer


  5. Posts : 12,177
    Windows 7 Ult x64 - SP1/ Windows 8 Pro x64
       #15

    Hi Gingermadman,

    When you ran the memory test was it Memtest86+?

    D/L CPUZ and post a snip of the CPU, Mainboard, Memory, and SPD tabs.

    For posting the information , enter 'Snipping tool' in the Start button > Search box, hit enter. Select the area you want to post and save to a convenient place.
    How to Post a Screenshot in Seven Forums


    Have you been checking your temperatures?

    Use Speed Fan or Core Temp , run one of these and check the CPU temps when at idle, under load and/or testing.
    Let us know the minimum and maximum temps you get.

    Go to your BIOS and tell us what the CPU, RAM and North Bridge (NB) voltages are.
      My Computer


  6. Posts : 75
    Windows 7
    Thread Starter
       #16

    Been using speedfan a while, all temps are fine idle (Everything but GPU mid 30's, GPU 60c , go up to 50c and 85c respectively once they've been stressed for a while)

    I used memtest86+ for the memory test, it found errors in my last set of ram but showed this one fine.

    Voltages are all set to automatic, except ram that is set to 1.65v "overvoltage" which reports the same in CPU-Z at least

    enclosed first bsod in 3-4 days and screenshots. I did blue screen again during using the snip tool.
      My Computer


  7. Posts : 12,177
    Windows 7 Ult x64 - SP1/ Windows 8 Pro x64
       #17

    Good information, looks like your running at JEDEC #3 except for the voltage, change the RAM voltage to 1.50v.

    Test for stability, let us know the results.

    The RAM settings look good, the single channel will help with the stability.

    Can you check the NB voltage and post it?
    Please post the info, this will help us with this issue.
      My Computer


  8. Posts : 75
    Windows 7
    Thread Starter
       #18

    Changed ram voltage to 1.5v , I don't blue screen enough to tell.

    Last night though I blue screened and repeated another problem I was having that forced me to change the hardware.

    When I boot up it would constantly be stuck in the initial boot phase of the fans spinning at full speed. I unplugged the hard drive, turned it on and it ran fine. Plugged back in the hard drive and it would boot fine again.

    Anyway, Seemed to have accidently unplugged the CD-Drive, so keeping it unplugged just to test it anyway.

    Couldn't find the NB voltage, could it be called something else? I looked around for things like FSB too if it was at all connected but didn't see it in the page where all the voltages are listed.

    edit. the ram voltage hasn't changed according to CPU-Z. hmm.
    Last edited by Gingermadman; 17 Sep 2010 at 06:10.
      My Computer


  9. Posts : 12,177
    Windows 7 Ult x64 - SP1/ Windows 8 Pro x64
       #19

    Did you 'Save and Exit' when you changed the voltages?

    Your motherboard Manual, Asus M4A785TD-V EVO
    Down load this for reference.

    The CPUZ 'SPD' tab is the manufacturer recommended settings from the industry standard, JEDEC.
    These are designed to let the system boot up, usually they are enough to run on, occationally the settings need to be adjusted.
    AMD tends to need some settings adjusted due to the integrated memory controller, which seems to have issues with RAM speeds of 1333MHz or higher.

    The CPUZ 'Memory' tab shows what your current RAM BIOS settings are, all voltages must be read from BIOS.

    Advanced > Jumper Free Configuration > memory OverVoltage, motherboard manual pg 2-12.

    Check your BIOS settings, are you in AHCI, RAID or IDE mode?
    BIOS > Main > SATA Configuration, motherboard manual pg 2-8.
    OnChip SATA Channel, should be 'Enabled'
    What does the 'OnChip SATA Type' have selected?
    Shold be either [SATA], [RAID], or [AHCI].



    The newest version of BIOS update log:
    M4A785TD-V EVO BIOS 2105
    Fix the issue that system may be unable to boot from SATA ODD, when onboard RAID is enabled.
    If you're able to boot now that the CD drive is unplugged, this might be related to the above issue, you should update your BIOS to 2105.


    Your North Bridge voltage settings are in BIOS, Advanced > Jumper Free Configuration > VDDNB Over Voltage, Motherboard manual pg 2-10.
    Check the current voltage and let us know.
    Last edited by Dave76; 17 Sep 2010 at 11:07.
      My Computer


  10. Posts : 75
    Windows 7
    Thread Starter
       #20

    The problem was that I had to unplug then replug the hard drive in, and it started working again. The CD drive might have been coincidental.

    It doesn't show you the voltage for the northbridge for some reason. It says something along the lines of "for CPU"

    Ram voltage says 1.5v in the BIOS. I'll get on checking to see if it's RAID or not tonight.
      My Computer


 
Page 2 of 6 FirstFirst 1234 ... LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 00:26.
Find Us