New
#11
Last edited by BRUTALNI; 16 Sep 2012 at 02:12.
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![]()
BRUTALNI, sorry to say, but if those dumps are with driver verifier on, it is not good.
All the dumps showed this:
ntkrnlmp.exe cannot be the cause of the crash, but it the kernel on which it crashes.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 ---------
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.
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 timecreated, id, message }
$obj | ft -auto -wrap > $env:userprofile\desktop\CHKDSKLOGS.TXT
EXIT
EXIT
# ************************************************************
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.