Go Back   TechArena Community > Technical Support > Computer Help > MediaCenter
Become a Member!
Forgot your username/password?
Register Tags Active Topics RSS Search Mark Forums Read SiteMap

Tags: ,

Sponsored Links



BSOD STOP 0x000000F4

MediaCenter


Reply
 
Thread Tools Search this Thread
  #1  
Old 03-11-2009
Rien
 
Posts: n/a
BSOD STOP 0x000000F4

hello
I get at close intervals (1 to 5 days) a Blue screen (BSOD) without name
of an offending driver, juste STOP 0x000000F4 (0x00000003)
(0x866679D8) (0x86667B4C) (0x805C7478)
I found with several search engines for this Stop and found nothing. I
found nothing either on MS site. How can I do a diagnostic about that ?

My configuration : Dell Inspiron 6000 laptop, with WXP Media center ed.
I didn't intall anything recently, my antivirus is up to date (Avast)

I think about a random hard problem, but before replacing my HDD or
reinstalling all, I'd like to be sure about the diagnostic.
Can anybody help me ?
Thank you
Reply With Quote
  #2  
Old 03-11-2009
Curious
 
Posts: n/a
Re: BSOD STOP 0x000000F4

Are the drivers for your graphics card and tuner card the latest from the
Dell or the chip manufacturers Websites. You may have installed a driver
from WinUpdate that is out of date or which is incompatible with your
system?
Is there any information in the event logs that might help to determine the
cause?

"Rien" <rien@rien.com> wrote in message
news:e4NhBfAXKHA.504@TK2MSFTNGP06.phx.gbl...
> hello
> I get at close intervals (1 to 5 days) a Blue screen (BSOD) without name
> of an offending driver, juste STOP 0x000000F4 (0x00000003) (0x866679D8)
> (0x86667B4C) (0x805C7478)
> I found with several search engines for this Stop and found nothing. I
> found nothing either on MS site. How can I do a diagnostic about that ?
>
> My configuration : Dell Inspiron 6000 laptop, with WXP Media center ed.
> I didn't intall anything recently, my antivirus is up to date (Avast)
>
> I think about a random hard problem, but before replacing my HDD or
> reinstalling all, I'd like to be sure about the diagnostic.
> Can anybody help me ?
> Thank you


Reply With Quote
  #3  
Old 03-11-2009
Gurpreet Singh
 
Posts: n/a
RE: BSOD STOP 0x000000F4

Bugcheck F4 indicates (Bug Check 0xF4: CRITICAL_OBJECT_TERMINATION). If you
see the first parameter as 0x3 (in you rcase it is 0x3) it indicates a
process termination. In case of a thread termination the first paremeter
would be 0x4. The second parameter would be the terminating object id, in
case it would be a process id. The third parameter is the process image name,
and we do not see this in the bugcheck info provided by you. If you have the
memory.dmp file created in windows folder after this bugcheck, you can use
the windows debugging tools to open the dump file and investigate the cause
of the bugcheck. Download and install the windows debugging tools from
http://msdl.microsoft.com/download/s...6.11.1.404.msi

install it and then open the dump in the windows debugging tools. create a
folder c:\symbols from windows explorer. In windows debugging tools, open the
menu file>>Symbol file path and paste the following
SRV*c:\symbols*http://msdl.microsoft.com/download/symbols;

check teh reload button and from the windoes debugging tools main menu type
!analyze -v

This should give you a basic dump analysis.

Alernatively I would suggest you run the following script on the box.

Create a file named processid.vbs and add the following content. Double
click the file to execute the vbs file. This will create a csv file and
everytime you open a process it will update the file with the process
details. Additional run the command at system startup

tasklist >tasks.txt

to dump all the running processes and there process id's. Once the bugcheck
happens and you still do not see any process name in the bugcheck parameter,
use calculator to convert the second parameter from hex to decimal and look
in the tasks.txt file of the file created by the following script.
'========================process.vbs content
strComputer = "."

Const EVENT_SUCCESS = 0
Set objShell = Wscript.CreateObject("Wscript.Shell")
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colMonitoredProcesses = objWMIService. _
ExecNotificationQuery("select * from __InstanceCreationEvent " _
& " within 1 where TargetInstance isa 'Win32_process'")
i = 0
Do While i = 0
Set objLatestProcess = colMonitoredProcesses.NextEvent



message = objLatestProcess.TargetInstance.ProcessId & "," &
objLatestProcess.TargetInstance.ExecutablePath & "," &
objLatestProcess.TargetInstance.Name
writetocentrallocation message

Loop

sub writetocentrallocation(message)
filename= replace(date,"/", "-") & ".csv"
Set filesys = CreateObject("Scripting.FileSystemObject")
if filesys.FileExists(filename) then

Set results = filesys.openTextFile(filename , 8)
else

Set results = filesys.CreateTextFile(filename)
results.writeline "Process created"
results.writeline "Process id, Path, Details"
end if

results.writeline message

end sub
--
Regards
Gurpreet Singh


"Rien" wrote:

> hello
> I get at close intervals (1 to 5 days) a Blue screen (BSOD) without name
> of an offending driver, juste STOP 0x000000F4 (0x00000003)
> (0x866679D8) (0x86667B4C) (0x805C7478)
> I found with several search engines for this Stop and found nothing. I
> found nothing either on MS site. How can I do a diagnostic about that ?
>
> My configuration : Dell Inspiron 6000 laptop, with WXP Media center ed.
> I didn't intall anything recently, my antivirus is up to date (Avast)
>
> I think about a random hard problem, but before replacing my HDD or
> reinstalling all, I'd like to be sure about the diagnostic.
> Can anybody help me ?
> Thank you
> .
>

Reply With Quote
  #4  
Old 03-11-2009
S.Sengupta
 
Posts: n/a
Re: BSOD STOP 0x000000F4

Have you tried a System Restore? Select any restore point when everything
was running fine.

Also test your hard drive with manufacturer's diagnostic tool.

regards,
S.Sengupta [MS-MVP]





"Rien" <rien@rien.com> wrote in message
news:e4NhBfAXKHA.504@TK2MSFTNGP06.phx.gbl...
> hello
> I get at close intervals (1 to 5 days) a Blue screen (BSOD) without name
> of an offending driver, juste STOP 0x000000F4 (0x00000003) (0x866679D8)
> (0x86667B4C) (0x805C7478)
> I found with several search engines for this Stop and found nothing. I
> found nothing either on MS site. How can I do a diagnostic about that ?
>
> My configuration : Dell Inspiron 6000 laptop, with WXP Media center ed.
> I didn't intall anything recently, my antivirus is up to date (Avast)
>
> I think about a random hard problem, but before replacing my HDD or
> reinstalling all, I'd like to be sure about the diagnostic.
> Can anybody help me ?
> Thank you
>
> __________ Information from ESET Smart Security, version of virus
> signature database 4566 (20091102) __________
>
> The message was checked by ESET Smart Security.
>
> http://www.eset.com
>
>
>


__________ Information from ESET Smart Security, version of virus signature database 4566 (20091102) __________

The message was checked by ESET Smart Security.

http://www.eset.com



Reply With Quote
Reply

  TechArena Community > Technical Support > Computer Help > MediaCenter


Thread Tools Search this Thread
Search this Thread:

Advanced Search


Similar Threads for: "BSOD STOP 0x000000F4"
Thread Thread Starter Forum Replies Last Post
BSOD 0x000000F4 after SSD migration Statuser Windows XP Support 3 05-01-2011 07:54 PM
BSoD 0x000000F4 (Drivers?) pappzy Windows XP Support 1 28-08-2010 02:05 AM
Blue Screen stop error: 0X000000F4 Nicolas Macarez Vista Setup and Install 2 26-03-2009 01:05 AM
Installation BSOD STOP 5C - Nigel16494 Vista Setup and Install 6 22-11-2007 10:15 AM
STOP 0x000000F4 Bob Provencher Windows Server Help 2 03-02-2007 06:54 PM


All times are GMT +5.5. The time now is 06:30 AM.