[SOLVED] Windows 8.1 BSOD x64

dnowak

Member
Joined
Aug 2, 2015
Posts
5
Hello! I have been getting the BSOD the past 3 days. There are two errors that come with it. It either says "0xa0000001" or "KMODE_EXCEPTION_NOT_HANDLED (usbohci.sys).
OS- Windows 8.1
x64
Original is Windows 8
It came pre-installed
2 Years

CPU-AMD A8-5500 APU with Radeon(tm) HD Graphics 3.20GHz
Graphics Card- AMD Radeon R7 200 Series
Motherboard- MSI Product Number-2AE0 Version 1.0
Power Supply- 520 Watt ATX

MSI
HP Pavilion 500 PC Model No.500-027c
Desktop

I tried using the command sfc /scannow but it says that there is corrupted files but Windows cannot fix it. I can link the CBS log if you would like. The SysnativeFileCollectionApp didn't create a zip so should i link all the files separately? Also the PERFMON command would not work with admin cmd. Thank you!
 
Perfmon issue is known and will be fixed in future release.

Code:
2: kd> .bugcheck
Bugcheck code A0000001
Arguments 00000000`00000005 00000000`00000000 00000000`00000000 00000000`00000000

AMD/ATI based bug check only - this is not a Windows bug check.

To confirm, if we check the stack:

Code:
2: kd> knL
 # Child-SP          RetAddr           Call Site
00 ffffd000`f7118b58 fffff801`2e44483e nt!KeBugCheckEx
01 ffffd000`f7118b60 00000000`a0000001 atikmdag+0x2783e
02 ffffd000`f7118b68 00000000`00000005 0xa0000001
03 ffffd000`f7118b70 00000000`00000000 0x5

We can see the video driver (frame # 01) called the bug check function without any prior Windows fault handling, etc.

Code:
2: kd> lmvm atikmdag
start             end                 module name
fffff801`2e41d000 fffff801`2f10d000   atikmdag T (no symbols)           
    Loaded symbol image file: atikmdag.sys
    Image path: \SystemRoot\system32\DRIVERS\atikmdag.sys
    Image name: atikmdag.sys
    Timestamp:        Fri Jul 04 21:39:13 2014

2014 video driver, try updating it.

If bug check still occurs after updating, enable verifier:

Driver Verifier:

What is Driver Verifier?

Driver Verifier monitors Windows kernel-mode drivers, graphics drivers, and even 3rd party drivers to detect illegal function calls or actions that might corrupt the system. Driver Verifier can subject the Windows drivers to a variety of stresses and tests to find improper behavior.

Essentially, if there's a 3rd party driver believed to be causing the issues at hand, enabling Driver Verifier will help us see which specific driver is causing the problem.

Before enabling Driver Verifier, it is recommended to create a System Restore Point:

Vista - START | type rstrui - create a restore point
Windows 7 - START | type create | select "Create a Restore Point"
Windows 8/8.1 - Restore Point - Create in Windows 8

How to enable Driver Verifier:

Start > type "verifier" without the quotes > Select the following options -

1. Select - "Create custom settings (for code developers)"
2. Select - "Select individual settings from a full list"
3. Check the following boxes -
- Special Pool
- Pool Tracking
- Force IRQL Checking
- Deadlock Detection
- Security Checks (only on Windows 7 & 8/8.1)
- DDI compliance checking (only on Windows 8/8.1)
- Miscellaneous Checks
4. Select - "Select driver names from a list"
5. Click on the "Provider" tab. This will sort all of the drivers by the provider.
6. Check EVERY box that is NOT provided by Microsoft / Microsoft Corporation.
7. Click on Finish.
8. Restart.

Important information regarding Driver Verifier:

- Perhaps the most important which I will now clarify as this has been misunderstood often, enabling Driver Verifier by itself is not! a solution, but instead a diagnostic utility. It will tell us if a driver is causing your issues, but again it will not outright solve your issues.

- If Driver Verifier finds a violation, the system will BSOD. To expand on this a bit more for the interested, specifically what Driver Verifier actually does is it looks for any driver making illegal function calls, causing memory leaks, etc. When and/if this happens, system corruption occurs if allowed to continue. When Driver Verifier is enabled per my instructions above, it is monitoring all 3rd party drivers (as we have it set that way) and when it catches a driver attempting to do this, it will quickly flag that driver as being a troublemaker, and bring down the system safely before any corruption can occur.

- After enabling Driver Verifier and restarting the system, depending on the culprit, if for example the driver is on start-up, you may not be able to get back into normal Windows because Driver Verifier will detect it in violation almost straight away, and as stated above, that will cause / force a BSOD.

If this happens, do not panic, do the following:

- Boot into Safe Mode by repeatedly tapping the F8 key during boot-up.

- Once in Safe Mode - Start > Search > type "cmd" without the quotes.

- To turn off Driver Verifier, type in cmd "verifier /reset" without the quotes.

- Restart and boot into normal Windows.

If your OS became corrupt or you cannot boot into Windows after disabling verifier via Safe Mode:

- Boot into Safe Mode by repeatedly tapping the F8 key during boot-up.

- Once in Safe Mode - Start > type "system restore" without the quotes.

- Choose the restore point you created earlier.

-- Note that Safe Mode for Windows 8/8.1 is a bit different, and you may need to try different methods: 5 Ways to Boot into Safe Mode in Windows 8 & Windows 8.1

How long should I keep Driver Verifier enabled for?

I recommend keeping it enabled for at least 24 hours. If you don't BSOD by then, disable Driver Verifier. I will usually say whether or not I'd like for you to keep it enabled any longer.

My system BSOD'd with Driver Verifier enabled, where can I find the crash dumps?

- If you have the system set to generate Small Memory Dumps, they will be located in %systemroot%\Minidump.

- If you have the system set to generate Kernel Memory Dumps, it will be located in %systemroot% and labeled MEMORY.DMP.

Any other questions can most likely be answered by this article:

http://support.microsoft.com/kb/244617
 
I'm afraid it may be a hardware issue. I'm not getting the BSOD error mesages but I am crashing after updating the drivers. For example 10 minutes ago the screen became like "ripped" and blurred, turns blue, and the computer restarted. I also get some black screens and when it returns there's an error message that says "AMD Drivers have stopped working but have been recovered" or around those lines.
 
Yeah, I'm certain that's your graphics card failing. I would replace it.
 
Yeah, thankfully its an easy fix/replacement. Thank you guys so much for helping me! I really appreciate it and couldn't have done it without you.
 

Has Sysnative Forums helped you? Please consider donating to help us support the site!

Back
Top