Why am I repeatedly a blue screen?

Yesterday, I started to have the blue screen of death while message on internet.  It happened several times in the last two days.

Part of the message says * STOP: 0000001E (0xFFFFFFFFC0000096, 0xFFFFF80002CA6EEA, 0 x 0000000000000000, 0 x 0000000000000000)

Any ideas?

Two days ago my computer (HP) had me to perform an upgrade.  I think that has to do with that.

Thank you

Jerimiah

Hello

Check with HP Support, their drivers and documentation online and ask in their forums
known with these updates or any other hardware or software issues.

Support HP & drivers
http://welcome.HP.com/country/us/en/support.html

Contact HP
http://welcome.HP.com/country/us/en/contact_us.html

HP forums
http://h30434.www3.HP.com/PSG/

===========================================================

Resolve errors stop (blue screen) in Windows 7 - has a section for if you can or cannot start Windows.
http://Windows.Microsoft.com/en-us/Windows7/resolving-stop-blue-screen-errors-in-Windows-7

See this thread for more information on using BlueScreenView, MyEventViewer and other methods of
Troubleshoot BlueScreens - answers top 3 (+ 1 more).

http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-system/sometimes-i-get-a-blue-screen-when-using-IE-8/c675b7b8-795f-474d-a1c4-6b77b3fcd990

We can analyze the minidumps if make you it available to the SkyDrive or another file
sharing sites (such as MediaFire). If you have problems to download the copy of minidumps
for the office or in the Documents folder and download them from there.

ZIP or download the content of the C:\Windows\minidump

Use SkyDrive to upload collected files.
http://social.technet.Microsoft.com/forums/en-us/w7itproui/thread/4fc10639-02dB-4665-993a-08d865088d65

========================================================

BCCode: 1st 0x0000001E

Remove ALL power and reinstall all the memory cards and cables (both ends when)
possible)
- in fact, remove and replace - do not just tight. This is for a PC and on all
that can be done for a laptop is reinstall the memory and clear the vents. Make sure the BIOS.
low level chipset drivers and key device drivers are all up to date by check manually to the
manufacturer websites.

Bluescreens many are caused by the BIOS, drivers low-level chipset and other major device
drivers that are not the latest, even if the computer is new. Check manually
updates using the methods of updates as indicated in the resolution of the problems above
and/or the following methods (which are the same).


BCCode: 1st 0x0000001E

Bug Check 0x1E: KMODE_EXCEPTION_NOT_HANDLED

KMODE_EXCEPTION_NOT_HANDLED bug control has a value of 0x0000001E. This indicates that a kernel-mode program generated an exception which did not catch the error handler.

Important info if you received a STOP Code

If you received a blue error screen, or a stop code, the computer stopped abruptly to protect against data loss. A hardware device, its driver or software might have caused this error. If your copy of Windows is shipped with your computer, contact your computer manufacturer. If you purchased Windows separately from your computer, Microsoft provides support. To find contact information for Microsoft or the manufacturer of your computer, Contact Support.

If you have experience with computers and try to recover from this error, follow the steps in the Microsoft article solution STOP (blue screen) errors in Windows.

These actions could prevent a mistake like this does not happen:

  1. Download and install updates for your computer from Windows Update device drivers.
  2. Scan your computer for computer viruses.
  3. Check your hard drive for errors.

KMODE_EXCEPTION_NOT_HANDLED parameters

The following settings are displayed on the blue screen.

Parameter Description

1

The code for the unhandled exception

2

The address at which the exception occurred

3

Parameter 0 of the exception

4

Parameter 1 of the exception

Cause

It is a very common bug control. To interpret it, you must identify which exception has been generated.

Common exception codes include:

  • 0 X 80000002: STATUS_DATATYPE_MISALIGNMENT

    An unaligned data reference was encountered.

  • 0 X 80000003: STATUS_BREAKPOINT

    A breakpoint or ASSERTION was met when no kernel debugger was attached to the system.

  • 0XC0000005: STATUS_ACCESS_VIOLATION

    A memory access violation has occurred. (Parameter 4, verification of bug is the address to which the driver attempted to access.)

For a complete list of exception codes, see the ntstatus.h file located in the directory of the Windows Driver Kit inc.

Resolution

If you do not have to debug this problem, you must use certain basic troubleshooting techniques. If a driver is identified in the bug check message, disable the driver or check with the manufacturer for driver updates. Try changing video cards. Check with your hardware vendor for updates to the BIOS. Disable the BIOS memory options such as implementing caching or shading.


If you plan to debug this problem
, you may find it difficult to get a stack trace. Parameter 2 (the address of the exception) should identify the driver or function that caused the problem.

If the exception code 0 x 80000003 occurs, this indicates that a breakpoint coded hard or assertion was hit, but the system was launched with the /nodebug. switch. This problem should occur infrequently. If it occurs repeatedly, make sure a kernel debugger is connected and the system is booted with the Switch/DEBUG .

In case of exception code 0 x 80000002, the trap frame will provide additional information.

If you don't know the specific cause of the exception, the following should be considered:


Hardware incompatibility.
First of all, make sure that all new equipment installed is compatible with the installed version of Windows. For example, you can get information about compatibility with Windows 7 in the Windows 7 Compatibility Center.


Service system or driver faulty device.
In addition, a chauffeur service or defective peripheral system could be responsible for this error. The hardware problems, such as BIOS incompatibilities, conflicts of memory and IRQ conflicts can also generate this error.

If a driver is listed by name in the bug check message, disable or remove that driver. Disable or remove drivers or services that have been recently added. If the error occurs during the startup sequence and the system partition is formatted with the NTFS file system, you may be able to use Safe Mode to rename or to delete the faulty driver. If the driver is used as part of the start-up procedure of the system Safe Mode, you must start the computer by using the Recovery Console to access the file.

If the problem is associated with Win32k.sys, the source of the error may be a third-party remote control program. If this software is installed, the service may be removed by the system startup by using the Recovery Console and by removing the offending system service file.

Check the system log in Event Viewer for additional error messages that might help determine the device or driver responsible for control of bug 0x1E. Disable the cache in the BIOS memory could also resolve the error. You must also run hardware diagnostics, especially the scanner memory, provided by the manufacturer of the system. For more information about these procedures, see the manual of your computer.

The error that generates this message may occur after the first reboot during Windows Setup, or after installation is complete. A possible cause of the error is incompatibility of the system BIOS. BIOS problems can be solved by upgrading the version of the system BIOS.

To get a stack trace, if the normal battery monitoring procedures don't

  1. Use the command Ko (display Stack Backtrace) to display the parameters from the stack trace. Look for the call to NT! PspUnhandledExceptionInSystemThread. (If this function is not listed, see the note below.)

  • The first parameter of NT! PspUnhandledExceptionInSystemThread is a pointer to a structure that contains pointers to an except statement:
    Copy
    typedef struct _EXCEPTION_POINTERS {PEXCEPTION_RECORD ExceptionRecord; PCONTEXT ContextRecord; } EXCEPTION_POINTERS, * PEXCEPTION_POINTERS; ULONG PspUnhandledExceptionInSystemThread (IN PEXCEPTION_POINTERS ExceptionPointers)

    Use the command dd (display memory) to this address to view the data.

  • The first value retrieved is an exception record and the second is a context record. Use the command .exr (display Exception record) and the command .cxr (display context record) with these two values as arguments, respectively.

  • After running the .cxr command, use the kb command to display a stack trace which is based on the registration context information. This stack trace indicates the call stack where the unhandled exception occurred.

  • Note  This procedure assumes that you can locate NT! PspUnhandledExceptionInSystemThread. However, in some cases (for example an access violation crash) you will not be able to do. In this case, to look ntoskrnl! KiDispatchException. The third parameter passed to this function is a trap frame address. Use .trap (trap Display frame) with this address to define the context of registry to the correct value. You can then perform the stack traces, issue other commands.

    Here is an example of bug 0x1E on an x 86 processor control:

    Bug_Check 0x1E - read link for the example
    http://msdn.Microsoft.com/en-us/library/ff557408 (v = vs. 85) .aspx

    BCCode: 1st 0x0000001E<-- read="" this="">
    * 1045.html http://www.faultwire.com/solutions-fatal_error/Check-to-be-sure-you-have-adequate-Disk-Space-0x0000001E-

    ==========================================================

    References to Vista also apply to Windows 7.

    It's my generic how updates of appropriate driver: (main drivers and BIOS)

    This utility, it is easy see which versions are loaded:

    -Free - DriverView utility displays the list of all device drivers currently loaded on your system.
    For each driver in the list, additional useful information is displayed: load address of the driver,
    Description, version, product name, company that created the driver and more.
    http://www.NirSoft.NET/utils/DriverView.html

    For drivers, visit manufacturer of emergency system and of the manufacturer of the device that are the most common.
    Control Panel - device - Graphics Manager - note the brand and complete model
    your video card - double - tab of the driver - write version information. Now, click on update
    Driver (this can do nothing as MS is far behind the certification of drivers) - then right-click.
    Uninstall - REBOOT it will refresh the driver stack.

    Repeat this for network - card (NIC), Wifi network, sound, mouse, and keyboard if 3rd party
    with their own software and drivers and all other main drivers that you have.

    Now in the system manufacturer (Dell, HP, Toshiba as examples) site (in a restaurant), peripheral
    Site of the manufacturer (Realtek, Intel, Nvidia, ATI, for example) and get their latest versions. (Look for
    BIOS, Chipset and software updates on the site of the manufacturer of the system here.)

    Download - SAVE - go to where you put them - right click - RUN AD ADMIN - REBOOT after
    each installation.

    Always check in the Device Manager - drivers tab to be sure the version you actually install
    presents itself. This is because some restore drivers before the most recent is installed (sound card drivers
    in particular that) so to install a driver - reboot - check that it is installed and repeat as
    necessary.

    Repeat to the manufacturers - BTW in the DO NOT RUN THEIR SCANNER device - check
    manually by model.

    Look at the sites of the manufacturer for drivers - and the manufacturer of the device manually.
    http://pcsupport.about.com/od/driverssupport/HT/driverdlmfgr.htm

    Installation and update of drivers under Windows 7 (updated drivers manually using the methods above
    It is preferable to ensure that the latest drivers from the manufacturer of system and device manufacturers are located)
    http://www.SevenForums.com/tutorials/43216-installing-updating-drivers-7-a.html

    If you update the drivers manually, then it's a good idea to disable the facilities of driver under Windows
    Updates, that leaves about Windows updates but it will not install the drivers that will be generally
    older and cause problems. If updates offers a new driver and then HIDE it (right click on it), then
    get new manually if you wish.

    Stop Windows 7 to automatically install device drivers
    http://helpdeskgeek.com/Windows-7/stop-Windows-7-from-automatically-installing-device-drivers/

    How to disable automatic driver Installation in Windows 7 / Vista
    http://www.AddictiveTips.com/Windows-Tips/how-to-disable-automatic-driver-installation-in-Windows-Vista/

    Turn off Windows Update Device Driver search prompt in Windows 7 / Vista (for professionals,
    Ultimate and Enterprise)
    http://www.AddictiveTips.com/Windows-tips/disable-Windows-Update-device-driver-search-prompt/

    ==========================================

    Tests of memory intercept all errors such as memory do not match (possible even for sticks
    seemingly identical) and when the faster memory is placed in system behind the slower memory.
    So it is best to Exchange also glue in and out to check for those, even if all the tests of memory do not respond
    a problem.

    To test the RAM here control - run 4 + hours or so.<-- best="">
    www.memtest.org

    For the Windows Memory Diagnostic tool.

    Start - type in the search-> memory box - find top - click - right Memory Diagnostics tool
    RUN AS ADMIN follow the instructions

    Windows Vista: How to scan / test your RAM or memory with Windows Vista Memory Diagnostic
    Tool
    http://www.shivaranjan.com/2007/11/01/Windows-Vista-how-to-scan-test-your-RAM-or-memory-with-Windows-Vista-memory-diagnostic-tool/

    How to run the diagnostic tool memory in Windows 7
    http://www.SevenForums.com/tutorials/715-memory-diagnostics-tool.html

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

    Tags: Windows

    Similar Questions

    • Why do I get the blue screen of DEATH most of the time when I try to print on my HP Office Jet printer?

      Why do I get the blue screen of DEATH most of the time when I try to print on my HP Office Jet printer?  Almost everytime I try to print to the printer HP Office Jet m I get the Blue Screen of Death in the middle of printing or shortly after that my document is printed.  I then have to shut down my computer and restart it.  I am running Windows 7.

      We need the log files themselves (called a DMP files) because they contain the only record of the sequence of events that led to the accident, what drivers have been loaded, and what has been loaded.


      Please follow our instructions to find and download the files, we need to help you fix your computer. They can be found at here

      If you have any questions regarding the procedure, please ask

    • Why do I get a blue screen that says your PC is encountered a problem and needs to restart. We are only collecting the error information and then it will reboot for you.

      Why do I get a blue screen that says your PC is encountered a problem and needs to restart. We are only collecting the error information and then it will reboot for you.

      https://www.dropbox.com/s/2dtm74f6ki7goa4/minidump.zip

      DAG

      These were related to your driver atheros wifi athw8x.sys I would like to re - install the latest driver available.

      If you continue to plant I remove Symantec and use the built in Defender

    • Why what I get a blue screen on my laptop, and then it restarts

      Remember - this is a public forum so never post private

      Ideas:

      • Why I get a blue screen on my laptop and then rebootingPrograms with the fact that you have problems
      • Error messages
      • Recent changes to your computer
      • What you have already tried to solve the problem

      Hello

      § What is the exact error message that you encounter the blue screen?

      § East - this happen randomly or whenever you access any program on the system?

      § Remember to make changes to the system?

      § Since when are you facing this issue?

      Give details, so that we can help you in a better way.

      I suggest you disable automatically restart the system and check the exact error you encounter in the blue screen and let us know. Follow the steps mentioned below to disable the auto reboot.

      a. right click on my computer and then click Properties.

      b. click on the Advanced tab.

      c. under Startup and recovery, click settings to open the startup and recovery dialog box.

      d. clear the checkbox automatically, restart and then click OK, the number of times required.

      e. restart your computer so that the settings take effect.

      Method 1:

      Step 1:

      In safe mode, check if the problem persists. Follow the steps mentioned below.

      a. restart the system and then keep tapping F8 until you reach the start menu.

      b. Select safe mode from the list and press ENTER.

      If the problem persists then in safe mode, I suggest you to do a clean boot. Follow step 2.

      Step 2:

      Follow the steps mentioned in the article below.

      How to configure Windows XP to start in a "clean boot" State

      http://support.Microsoft.com/kb/310353

      Method 2:

      I suggest update you the drivers on the system for the graphics card, etc. on the sound card system and check if the problem is resolved. I suggest update you also the drivers from the chipset on the system and check.

      Thanks and regards.

      Thahaseena M
      Microsoft Answers Support Engineer.
      Visit our Microsoft answers feedback Forum and let us know what you think.

    • Why am I so much blue screens and crashes?

      For some reason, I get loads of blue screens of death.
      I don't know why, but also when I charge my computer up, Skype crashes, Steam crashes, sometimes my browser crashes.
      I really need a solution to my problem, I've included a download of my blue screens of the record in this thread.
      C:\Windows\Minidump
      I have 13 files here.
      http://www.Megaupload.com/?d=R4N0GKQ9

      Hello

      1 did you change on your computer?

      I suggest you follow the link and check.

      Resolve stop (blue screen) error in Windows 7 http://windows.microsoft.com/en-US/windows7/Resolving-stop-blue-screen-errors-in-Windows-7

    • Event Viewer has perflib and repeated pc blue screen error

      My husband PC crashes which is especially used for WOW; When I checked the critical errors with perflib event log are the problem. I don't know that Vista had hoped for the entry of any person who might have had the same problem, do fix while it goes back into his room.

      Hello

      Check this thread for more information using BlueScreenView, MyEventViewer and other methods
      to troubleshoot the BlueScreens - top 3 responses (+ 1 other).

      http://social.answers.Microsoft.com/forums/en-us/vistarepair/thread/3deab2fa-4000-4136-8c78-a3d22b1db009

      We can analyze the minidumps if make you it available to the SkyDrive or another file
      sharing sites.

      ZIP or download the content of the C:\Windows\minidump

      Use SkyDrive download collected files and after shot/screenshot.
      http://social.technet.Microsoft.com/forums/en-us/w7itproui/thread/4fc10639-02dB-4665-993a-08d865088d65

      -------------------------------------------------------------------------

      Also this, so you can see the probable bluescreens.

      Windows Vista restarts automatically if your computer encounters an error that requires him to plant.
      (also Windows 7)
      http://www.winvistatips.com/disable-automatic-restart-T84.html

      ===========================================================

      Check out these utilities to see if information may be collected:

      It is an excellent tool for displaying the blue screen error information

      -Free - BlueScreenView scans all your minidump files created during "blue screen of death," collisions
      and displays information about all accidents of a table.
      http://www.NirSoft.NET/utils/blue_screen_view.html

      -------------

      MyEventViewer can be verified at the time of the blue screen (BSOD) within a second or so of the
      time of the BSOD to provide more information about the possible cause - see TIP.

      MyEventViewer - free - a simple alternative in the standard Windows Event Viewer.
      TIP - Options - Advanced filter allows you to see a period of time instead of the whole of the record-
      Set it for a bit before and after the time of the BSOD.
      http://www.NirSoft.NET/utils/my_event_viewer.html

      ------------

      AppCrashView - free - a small utility for Windows Vista and Windows 7 that displays the details of all the
      application goes down has occurred in your system. The information breaks down is extracted from the .wer
      the files created by the Windows Error Reporting (WER) of the operating system component of each
      time that an accident has occurred. AppCrashView also allows you to easily record the list of accidents to
      text/html/csv/xml file.
      http://www.NirSoft.NET/utils/app_crash_view.html

      I hope this helps and happy holidays!

      Rob Brown - MS MVP - Windows Desktop Experience: Bike - Mark Twain said it right.

    • Repeated lately blue screens

      I was blue screening 1-2 times a day for a few weeks. It occurs usually when just browsing the internet or watching streams shaking, nothing put heavy load on the pc at all. Error code changes each time. The last of them was IRQL_NOT_LESS_OR_EQUAL. I'll include the dmp file. It seemed to start happening more often, when I downloaded the new Nvidia drivers after GTA5 released on the PC, but it happened before, just less often, so I don't think that is the root cause. My MEMORY. DMP file is 600 MB.

      https://onedrive.live.com/redir?RESID=865D609459AB412%21143

      I ran a chkdsk yesterday, solves nothing.

      Data sheet:

      AMD FX6300 3.5 ghz

      Gskill RAM 8 GB

      NVIDIA 660TI

      Hard drive 500 GB

      In one of the accidents, the blue screen said something like "Fatal Error" or something in that sense. It appeared only for a fraction of a second, before going to look blue screen with an error code.

      Unloaded modules:
      fffff880 ' 04252000 fffff880' 04264000 WmXlCore.sys<==>http://www.sysnative.com/drivers/driver.php?id=WmXlCore.sys

      Timestamp: unavailable (00000000)
      Checksum: 00000000
      ImageSize: 00012000

      fffff880 '04dfa000 fffff880' 04dff000 WmBEnum.sys<> http://www.sysnative.com/drivers/driver.php?id=WmBEnum.sys
      Timestamp: unavailable (00000000)
      Checksum: 00000000
      ImageSize: 00005000

      Some Logitech drivers are still being unloaded. First thing, I would say, is to ensure that all device drivers are updated to the most recent available.

      See Logitech WingMan associated discussions.

      http://support.Logitech.com/support/en_US/search#q=Logitech%20WingMan%20Virtual%20Hid%20Device%20Driver&t=products

      Secondly, uninstall AVAST and install Microsoft Security Essentials, supported by Malwarebytes (free) as a second opinion scanner.

      AVAST uninstall utility.

      https://www.avast.com/uninstall-utility

      Microsoft Security Essentials.

      http://Windows.Microsoft.com/en-us/Windows/Security-Essentials-download

      Malwarebytes. (free)

      https://www.Malwarebytes.org/antimalware/

      * Please, provide a link to the drivers of your system / motherboard and download page *.

    • Why do I get a blue screen when I go in the develop module?

      I just installed LR cc on my new Dell laptop.  I loaded 40Photos from a SD disk.  Al came fine in the library module, but when I went to develop I had a bright blue screen.  It was obvious that the photo was somehow behind the screen.  The controls right acted as if the photo was on the screen.  I tried the Reset, but nothing has changed.  If I made a comparison, I received the photo on one side and the blue screen on the other. I must have accidentally hit something but can't for the life of me what it was.

      Go in Edition > Preferences > Performance and uncheck CPU graph use, that should fix.

      You can also try updating your graphic driver and see if you can work with the active graphic processor.

    • Why Camera Raw displays a blue screen with white cross rather than the image I opened?

      Hello

      I'm having a problem with Adobe 9.0 Raw on my PC. When I open an image in Camera Raw by right-clicking since Adobe Bridge CC, it opens and displays a blue image marine with a white top cross where the image should appear. It happens with all jpeg images, I am trying to open. This problem started only for updating the software via Adobe Creative Cloud 3 days ago.

      Any help on this would be greatly appreciated!

      disable the GPU use in vintages camera interface

    • Why do I get a blue screen with the error STOP: 0x0000007E every time I turn on my computer?

      Error message: STOP: 0x0000007E (0xc0000005, 0xB42E09AC, 0xBA4E39B4, 0xBA4E36B0)

      Here is the text of the BSOD:

      STOP: 0x0000007E (0xC0000005, 0xB0B9B9AC, 0xBA4DF8AC, 0xBA4DFSA8)
      Kbdclass.sys - address BOB9B9AC base at B0B9B000, DateStamp 48025372
      Some of the Stop line numbers change but their pretty much the same content. There is no C:\Windows\Memory.Dmp file on this computer.  Sorry it takes so long

      The Kbdclass.sys driver that is referenced is the keyboard class driver that is a component of Windows.

      It is possible that the accident might actually be due to a third-party keyboard driver.

      If you have installed a third party (for example. Keyboard Logitech driver) can update you or, if necessary, uninstall the third-party keyboard driver and see if the error resolves?

      Article on Microsoft:

      http://support.Microsoft.com/kb/313050

      In accordance with article Logitech Mouseware software can also cause the error.

    • repeated the blue screen of death in windows vista.

      hope that someone would be able to give me easy understandable advice? It is all the information that I received the error report that I apologise for the collage what anyone who is not relevant, but not'm not computer savvy.

      Thanks gavin.

      Problem event name: BlueScreen

      The system version: 6.0.6002.2.2.0.768.3

      Locale ID: 2057

      More information about the problem:

      BCCode: 1a

      BCP1: 00000402

      BCP2: C008BFE8

      BCP3: 83 53866

      BCP4: 86457198

      OS version: 6_0_6002

      Service Pack: 2_0

      Product: 768_1

      Files helping to describe the problem:

      C:\Windows\Minidump\Mini011610-01.dmp

      C:\Users\gavin\AppData\Local\Temp\WER-47408-0.SysData.XML

      C:\Users\gavin\AppData\Local\Temp\WER618.tmp.version.txt

      Read our privacy statement:

       

      Hello

      If memory couldn't then 'some' of it is likely to be bad - there could be other causes for memory failed
      test as BIOS and motherboard issues but those are rare. If you have several sticks of RAM memory
      You can try to turn off and exchanging leaving them the primary slots populated to see what stick is
      in fact, evil.

      The RAM of your old machine is not likely to be compatible with the new machine. A real computer store
      can replace RAM quickly.

      I hope this helps.
      Rob - bicycle - Mark Twain said it is good.

    • Repeated error DRIVER_IRQL_NOT_LESS_OR_EQUAL blue screen

      I replaced the motherboard and reinstalled Windows 7 HP. I get repeated DRIVER_IRQL_NOT_LESS_OR_EQUAL blue screen errors. Can anyone help identify the problem. I have the available minidump and the available XML files.

      Signature of the problem:
      Problem event name: BlueScreen
      OS version: 6.1.7601.2.1.0.768.3
      Locale ID: 2057

      More information about the problem:
      BCCode: 19
      BCP1: 0000000000000003
      BCP2: FFFFFA80069C5560
      BCP3: 0000000000000000
      BCP4: FFFFFFFFFFFFFFFF
      OS version: 6_1_7601
      Service Pack: 1_0
      Product: 768_1

      Files helping to describe the problem:
      C:\Windows\Minidump\100112-18439-01.dmp
      C:\Users\Michael\AppData\Local\Temp\WER-28048-0.SysData.XML

      Thanks for your useful notes. In this case, a MEMORY_MANAGEMENT error appeared before that I could answer. The fault was found on the motherboard. Replacing, it solved the problem. Thanks again.

    • Equium M50 shows black lines on sceen followed to blue screen

      Help please!

      I have Equium M50-192, who suffered with this problem for some time. More often, looking at youtube. APPER of black lines on the screen and no response from the mouse or the keyboard. But the sound continues. In a few seconds - a blue screen on death! And then a reboot. I think its something to do with the graphics card. I changed and then returns to the original driver - same thing happens. Check the bios.

      Any ideas. Otherwise its time for a new laptop!

      Hi 7hili7,

      And what of your operating system? Use you to XP, Vista, Windows 7, or another OS?

      Why do you think this has something to do with your graphics card? What is your personal feeling or do you have made specific for this?

      Without BSOD STOP code it s hard to say why this is happening. Blue screens can have much reason to also check your RAM and HARD drive using the special tools such as Memtest86 and Drive Fitness Test.

    • Satellite L20 - 101 - Sound driver causes blue screen

      1. my laptop is a Satellite L20-101. It worked fine until yesterday when I reinstalled the system (from recovery cd) after 3 years. I have updated the bios to version 1.70 (drawn from the toshiba site). Devices audio conexant could not be recognized, and if I run the installation of the latest audio drivers (sound-20080604145033), it fixes the problem, but when you restart the system and login as administrator I get a blue screen. Any help pls?

      2. given that the LAN card is working, there is a message for the installation of a driver for a network device!

      3. when the system starts up, I get an error 0 x 57 for toshiba power saver. Even when I reinstalled ver 7.03.02.I from toshiba Web site the problem remains.

      Thanks in advance
      Maxco

      Hi maxco,.

      About its pilot I n don't know why you're getting a blue screen with the latest version, but I advise to use the preinstalled version of Toshiba recovery disc. So try a point-to-point previous system restore.

      Driver LAN and Toshiba Power Saver, you can download from the official site. Relocation of these tools should work!

    • Satellite L550D - 10G - blue screen daily

      Hi all

      My 4 weeks new L550D - 10G everyday's a blue screen crash! After the crash, I got this information:
      BCCode: d1
      BCP1: 0000000006D9A318
      BCP2: 000000000000000B
      BCP3: 0000000000000001
      BCeP4: FFFFFA60028299ED

      Anyone has any idea what this means? I have Vista Home Premium 64 bit on my L550D.

      Thanks for the reply.

      Hello

      Firstly it is difficult to say why you're getting a blue screen every day. In most cases these bluescreens correspond to the drivers or hardware.
      If you have updated some drivers and what programs you have exactly? Maybe one of these cause this problem

      In addition, it would be interesting to know what BSOD stop code you get exactly, for example 0 x 000000123.
      For most of the stop codes, you can find help on Microsoft Knowledge Base.

    Maybe you are looking for