I'm working on IE11 Browser Helper Object. I got it working when I build it in x86. The problem is, I want to use the project on x64 the BHO extension isn't working when it's built on x64.
The extension shows up in the Internet Explorer add-ons screen, but the javascript popup is not showing up.
The DLL is registered using the x64 version of regasm via the Visual Studio command prompt as administrator, with/without the /codebase
and /tlb
but without result. The registry key is added successfully in my registry but the BHO is simply not working in IE. I've also tried placing the files in a subfolder of Program Files, but it simply is not working.
When I run my IE in Enhanced Protected Mode the add-on manager shows that my BHO is incompatible
, but without EPM the IE shows enabled
even though it's not working.
I'd like to get the BHO working on x64.
I also tried this 'hello world' BHO project but when I change it to build on x64 in stead of x86 the same problem occurs.
Regasm.exe (Assembly Registration Tool) HERE
Check your project settings to compile as 64bit and check IE version as well . and run it in Administrator mode.
Your Code is perfect. just the system settings and compilation configurations are messed up ,
also have a look at this setting https://answers.microsoft.com/en-us/ie/forum/ie11-windows_7/enable-64-bit-processes-in-ie-11/212270df-cc35-4e09-89e4-13b9da1bb6a7?auth=1
Hope this will help you out !!
It seems it doesn't work for everyone, so, I'll describe what I did to make it work.
1) download the sample project from here: https://github.com/reinaldo13/ie-bho-extension
2) modify
RegisterBHO(...)
method inBHO.cs
from:
to:
3) compile the project for AnyCPU: Project properties, select AnyCPU for the platform target.
4) create a .bat like this, adapt yo your path, and copy that aside your outputs dll:
This will register the dll for x86 and x64. This is mandatory to have both version registered otherwise IE won't like it (it will complain the extension is 'incompatible') because it won't be able to start it depending on your IE settings. Note I suppose you can have two different files for each version but .NET's AnyCPU doesn't need that.
5) run that .bat as admin, here is the output when I do this:
6) run
iexplore.exe
. It may work depending on your settings (displays a "HOLA!!!" messagebox), but anyway, go to menu Tools / Internet Options / Programs / Manage add-ons, this is what I see:If the extension is disabled, you should be able to enable it (and restart).
If it doesn't work (by default it shouldn't), make sure you've checked "Enable 64-bit processes for Enhanced Protected Mode*" (needs restart). To me the message is wrong, it should just say "Enable 64-bit processes"...