Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果有两个具有相似功能的 BHO,IE 如何决定先加载哪个?因为第一个加载的 BHO 会影响后面加载的 BHO。所以我想将我的 BHO 设置为第一个加载的。我能做些什么?
没有记录的方法可以做到这一点。但是根据我的经验,BHO 是按照在注册表中注册它们的顺序加载的 - HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects。
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects
因此,要在其他人之前加载 BHO,您需要生成按字典顺序出现在其他人之前的 CLSID。
但是,这并不能保证其他第三方 BHO 不会在您之前加载。您可以尝试使用手动编码的 CLSID 注册 BHO。