I'm looking at developing an IE9 extension (using the following as a reference Developing Internet Explorer Extensions?) and I'm wondering how I am going to deploy it.

Both Firefox and Chrome have a "store" where you can browse plugins and then a common packaging mechanism/standard, but I haven't been able to find the same for IE... anyone have any ideas?

link|improve this question

80% accept rate
feedback

4 Answers

You need to register the plugin as a COM addon, and add two entries to the registry. The post you linked to explains how to do both of these things.

You would deploy it as an installer package that does both of these things.

link|improve this answer
feedback

Check out the Internet Explorer Gallery Add-ons page.

link|improve this answer
Ok this is a place I can go to view add-ons (like a store), but where are the resources that talk about how to build the package, etc? – vdh_ant Apr 30 '11 at 21:30
feedback

ActiveX controls are installed automatically (with user permission, if the administrator has not disabled this). It's all part of the ActiveX specification, which you can find at Microsoft.

http://msdn.microsoft.com/en-us/library/aa751970(v=vs.85).aspx

link|improve this answer
feedback

WiX

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.