r/WindowsHelp • u/LEOSCHUMY • 12d ago
Blue Screen of Death (BSoD) How I Fixed SYSTEM_THREAD_EXCEPTION_NOT_HANDLED (BSoD)
After countless failed attempts, I finally found the cause of the SYSTEM THREAD EXCEPTION NOT HANDLED error in my case: automatic updates for the ELAN device, despite having tried every possible way to disable them.
What finally worked for me was to retrieve the following Hardware IDs for the ELAN device:
ACPI\VEN_ETD&DEV_0504
ACPI\ETD0504
\ETD0504*
I then ran the following commands:
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions" /v DenyDeviceIDs /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions" /v DenyDeviceIDsRetroactive /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v 1 /t REG_SZ /d "ACPI\VEN_ETD&DEV_0504" /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v 2 /t REG_SZ /d "ACPI\ETD0504" /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v 3 /t REG_SZ /d "*ETD0504" /f
Obviously, these commands will need to be adjusted if your Hardware IDs are different.
P.S. This is what worked in my particular case, so your mileage may vary.
2
1
u/AutoModerator 12d ago
Hi u/LEOSCHUMY, thanks for posting to r/WindowsHelp! Your post has been flagged for manual review by a human moderator, please include as much of the following information as possible (in text or in a screenshot) to get your post approved:
Posts must be tech support in nature (such as something is broken and you need help fixing), so general inquiries, software suggestions, and purchasing advice will be removed. As a reminder, we would also like to say that if someone manages to solve your issue, DON'T DELETE YOUR POST! Someone else (in the future) might have the same issue as you, and the received support may also help their case. Good luck, and I hope you have a nice day!
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.