Activate IE Add-Ons from an BHO

微笑、不失礼 提交于 2019-12-02 09:33:32

You should clarify your question.

Writing code to activate add-ons that the user has specifically disabled could be considered malicious behavior and could result in the application in question being marked as malware.

You can enable/disable BHOs by adding/removing a DWORD registry value called "Flags" with a value of 1 to this key:

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Ext\Settings\<BHO CLSID>
user2731631

Also, the 0 value of Flags means enabled. 1 means disabled.

Sometimes other values than 1 are entered (for example 256).

HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Ext\Settings\<BHO CLSID>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!