Very Confusing BSOD -"system thread exception not handled"
POTENTIAL SOLUTION?
Hey I came home last night to my PC doing the exact same thing as you. Looping System Thread Exceptions Not Handled with no ability to get into Safe Mode, no ability to recover via rollback or recoveries. System restore was throwing the following error
"failed to extract the original copy of the directory from the restore point
Source: %programFiles%\WindowsApps
Destination: AppxStaging"
and looking at the startup repair diagnosis repair log in C:\Windows\system32\Logfiles\srt\strtrail.txt was saying "A hard disk could not be found. If a hard disk is installed, it is not responding" even though the files could be browsed in an ubuntu install and there was no reported disc health problems
My Solution:
all documentation on a System thread exception with no reported failure file pointed to a driver issue.
I uninstalled all updates in advanced recovery options (both quality and feature updates) until it complained that it couldn't uninstall any further updates.
To get a list of drivers do the following:
- Getting into the Recovery Screen (see above)
- Click "See more advanced recovery options"
- Click troubleshoot
- Click advanced options
- Click command prompt
when you're in command prompt you'll notice you're in Z drive, because the recovery system is virtually mounted.
I used
C:
to change into C drive (where I have windows installed) . your windows may be mapped to a different location
and then ran the following to get a list of my 3rd party drivers:
DISM /Image:C:\ /Get-Drivers >mydrivers.txt
this will pull a list of all of your drivers installed on C:\ into a text file located at the root of C drive. I then used
more mydrivers.txt
to slowly look though all the entries in the driver file. I have a corsair keyboard and the newest drivers listed in that file were corsair ones. I noted the file names formatted as oemXX.inf for all things associated with corsair. especially the corsairvbusdriver.sys
I then used
DISM /Image:C:\ /Remove-Driver /Driver:oem[numbers].inf
to remove all applicable corsair drivers, i think i had 4 all up.
I also enabled the boot log on c:\ by following the command prompt steps on https://www.windowscentral.com/how-enable-boot-log-windows-10 as a just in case this didn't work, but on selecting "continue to windows 10" after closing the command window it booted with no further issues.
I hope this helps

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now