BSOD problem [ Memory managment ]

Page 2 of 5 FirstFirst 1234 ... LastLast

  1. Posts : 24
    Microsoft Windows 7 Professional 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #11

    karlsnooks said:
    ok,
    Now since you are convinced that you have memory problem:
    run at least 7 passes with MemTest86+

    RAM - Test with Memtest86+
    OK, i will test this overnight, i have new problem BSOD 1time, before Driver verifier test
    SYSTEM_SERVICE_EXCEPTION Npfs.SYS

    edit: look this every ~ 2 mins


    I will post you back results. Sorry for gramatical errors, i'm from bosnia :P :) and thanks so much.
    Last edited by BRUTALNI; 16 Sep 2012 at 02:12.
      My Computer


  2. Arc
    Posts : 35,373
    Microsoft Windows 10 Pro Insider Preview 64-bit
       #12

    You need to enable driver verifier, and post the crash dumps with verifier on!
      My Computer


  3. Posts : 24
    Microsoft Windows 7 Professional 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #13

    Arc said:
    You need to enable driver verifier, and post the crash dumps with verifier on!
    I enabled and i have this problem. DUMP
    dmp.rar - Speedy Share - upload your files here

    I now use computer in safe mod, i can't work on pc every 2-10 min crash
      My Computer


  4. Arc
    Posts : 35,373
    Microsoft Windows 10 Pro Insider Preview 64-bit
       #14

    BRUTALNI, sorry to say, but if those dumps are with driver verifier on, it is not good.

    All the dumps showed this:
    Code:
    ....
    *******************************************************************************
    *                                                                             *
    *                        Bugcheck Analysis                                    *
    *                                                                             *
    *******************************************************************************
    
    Use !analyze -v to get detailed debugging information.
    
    BugCheck 1A, {5003, fffff781c0000000, 276, 278000004ed}
    
    Probably caused by : ntkrnlmp.exe ( nt! ?? ::FNODOBFM::`string'+22cb4 )
    
    Followup: MachineOwner
    ---------
    ntkrnlmp.exe cannot be the cause of the crash, but it the kernel on which it crashes.

    A Stop0x1A causes for Device Driver or Memory or kernel.

    First run SFC /SCANNOW Command - System File Checker.

    Then do RAM - Test with Memtest86+. Run it for at least 8 passes, preferably overnight.

    Let us know the result.
      My Computer


  5. Posts : 10,200
    MS Windows 7 Ultimate SP1 64-bit
       #15

    Brutalini,
    In post #7, you indicated that you had run:
    CHKDSK X: /R /F
    where I've used x to indicate the disk being tested.

    First, and this is not your fault,
    the /F option is unneeeded, does nothing with the /R selected.
    /R includes /F

    In the good ol' dos days these two functioned slightly differently and you would need both /r and /f.

    Any passer-bys seeing this an go to a command prompt and type
    chkdsk /?

    All of that was just for knowledge.

    Now chkdsk puts entries into the event logs.

    I'm giving you instructions on how to run a script and then a very simple script which will put CHKDSKLOGS.TXT on your desktop.

    Run the script and attach CHKDSKLOGS.TXT to your next post as an attachment.

    # **********************INSTRUCTIONS**************************
    # STEP 1 ** RUN POWERSHELL AS ADMINISTRATOR ******************
    # ************************************************************
    #
    # WIN key | type POWERSHELL | do NOT hit ENTER |
    # in the PROGRAMS list, right-click on WINDOWS POWERSHELL |
    # choose "Run as administrator" |
    # Click on the YES button (if such appears)
    #
    # WIN key = key with Microsoft log on top
    #
    # for the guru:
    # WIN | type POWERSHELL | CTRL+SHIFT+ENTER key combo | ALT+Y keycombo
    # ************************************************************
    # STEP 2 ** COPY AND PASTE ***********************************
    # ************************************************************
    #
    # COPY the script using CTRL+C,
    # COPY every line of script down thru both EXIT statements
    #
    # PASTE into Powershell
    #----Right-Click at the PowerShell Prompt
    #----(Ctrl+V does not work)
    #
    # Start copying with first script line without a # at start of the line
    # Note: Actually, you can paste the entire file if you rather
    #-------Lines starting with a # are ignored by PowerShell
    # ************************************************************
    # STEP 3 ** SCRIPT OUTPUT & SCRIPT PURPOSE *******************
    # ************************************************************
    # --The script output and purpose is given at the very front of the script
    #
    # --The script output and purpose is given at the very front of the script
    #
    # ************************************************************
    # ***************** NOTE - POWERSHELL VERSION*****************
    # if you receive this error msg:
    #--The system can not find the path specified
    # you may need to update your PowerShell
    # you must be using Powershell 2.0 or later.
    #
    # To determine your Powershell version:
    #---Run PowerShell
    #---enter $host.version
    #---you should see at least:
    # Major Minor Build Revision
    # ----- ----- ----- --------
    # 2......0......-1.....-1
    #
    # If you do not see the above, update your Vista/Win 7.
    # ************************************************************
    # *************** NOTE - EXECUTION POLICY*********************
    # If you haven't set the execution policy, you may need to:
    #---Run PowerShell
    #---enter SET-EXECUTIONPOLICY -EXECUTIONPOLICY REMOTESIGNED
    # ************************************************************

    Script:
    # ************************************************************
    # Places CHKDSKLOGS.txt on your DESKTOP
    # Results of running chkdsk (check disk) are in ChkDskLogs.txt
    # ************************************************************

    $obj = new-object -typename psobject
    $events 
    get-winevent -filterhashtable @{logname='application';id=1001,26212,26214} -verbose:$false -ea:silentlycontinue |
    where {($_.providername -ne 'Microsoft-Windows-LoadPerf') -and ($_.providername -ne 'Windows Error Reporting')} |
    sort-object -property timecreated -desc 
    If ($events -eq $Null) {$events "No check disk logs exist." } ELSE {
    $obj $events SELECT timecreatedidmessage }

    $obj ft -auto -wrap $env:userprofile\desktop\CHKDSKLOGS.TXT

    EXIT
    EXIT

    # ************************************************************ 
      My Computer


  6. Posts : 24
    Microsoft Windows 7 Professional 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #16

    Arc said:
    BRUTALNI, sorry to say, but if those dumps are with driver verifier on, it is not good.

    All the dumps showed this:
    Code:
    ....
    *******************************************************************************
    *                                                                             *
    *                        Bugcheck Analysis                                    *
    *                                                                             *
    *******************************************************************************
    
    Use !analyze -v to get detailed debugging information.
    
    BugCheck 1A, {5003, fffff781c0000000, 276, 278000004ed}
    
    Probably caused by : ntkrnlmp.exe ( nt! ?? ::FNODOBFM::`string'+22cb4 )
    
    Followup: MachineOwner
    ---------
    ntkrnlmp.exe cannot be the cause of the crash, but it the kernel on which it crashes.

    A Stop0x1A causes for Device Driver or Memory or kernel.

    First run SFC /SCANNOW Command - System File Checker.

    Then do RAM - Test with Memtest86+. Run it for at least 8 passes, preferably overnight.

    Let us know the result.
    Hello results,

    Tests -6
    Pass - 4
    Falling address - 0067e26f964 - 2018.4mb
    Good - dfffffff
    Bad - ffffffff
    Err bits - 20000000
    Count - 1

    Tests 8 / Errors 1


    @down i will se when i come from school
      My Computer


  7. Posts : 10,200
    MS Windows 7 Ultimate SP1 64-bit
       #17

    brutalni,
    Please carry out post #15
      My Computer


  8. Posts : 24
    Microsoft Windows 7 Professional 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #18

    karlsnooks said:
    brutalni,
    Please carry out post #15
    that's all I need to do?
      My Computer


  9. Posts : 10,200
    MS Windows 7 Ultimate SP1 64-bit
       #19

    you are not going to get anywhere with me with comments like that.
      My Computer


  10. Posts : 10,200
    MS Windows 7 Ultimate SP1 64-bit
       #20

    Brutalni,

    Need full and complete set of system specs and here is how:

    Update your SevenForums System Specs
    User CP (located on the top menu bar) |
    Your Profile | Edit System Spec
    (left-hand column)

    To gather info, use Speccy (my favorite) or SIW or System Info

    In the System Manufacturer Block, enter:
    Ř Manufacturer and Model OR Custom build.
    Ř ADD the word laptop, desktop, netbook or tablet.
    For example:
    Toshiba Satellite L305D notebook.

    Provide full windows version info, for example:
    MS Windows 7 Ultimate SP1 64-bit

    Use the “Other Info” block for Optical Reader,
    Mouse, touchpad, wifi adapter, speakers, monitor, etc

    Scroll down and click on SAVE CHANGES.

    With Speccy, you can select with your mouse/touchpad info from the display
    and paste that info into your specs.

    SIW is a marvelous program, but the free version does not offer
    this capability.
      My Computer


 
Page 2 of 5 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 10:42.
Find Us