What is the simpliest way to install a BHO

社会主义新天地 提交于 2021-02-08 07:21:47

问题


I am not a windows programmer but it seems that I have to do an extension for Internet explorer.

I made a BHO with the help of this thread : How to get started with developing Internet Explorer extensions?

I did it, it "works" with VS's debug mode. Now I want a way to install it on a target machine.

I know there is a lot of thread all over internet but half of it don't work for me and I can't understand the other half. Windows's system programming is not a trivia for me and I really need help on this one. It took like 30 minutes to do the same things on Firefox/Chrome.

Let's consider that I have my extension.dll. What should I do with it ? Where should i register it to make it work in IE ? Am I considering the problem wrong, should I just learn outdated Windows's system for weeks ?

Thanks in advance, I'm really stuck here.


回答1:


  • Compile your extension in Release mode
  • On the target machine run regsvr32.exe /s extension.dll under the administrator privileges


来源:https://stackoverflow.com/questions/32271534/what-is-the-simpliest-way-to-install-a-bho

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