I have written a simple ActiveX control using Visual Studio 2010. I have registered this control on my development machine using regasm, and I can invoke the control in IE using Javascript's new ActiveXObject("...")
functionality.
However, I now need to prepare my ActiveX control for deployment to the customer, and this is where I need assistance.
I would like to package the control so that IE simply prompts the user in the infobar to install the control.
I understand that I will need to obtain a code signing certificate so that my ActiveX control will be trusted.
My question is, what are the steps I need to work through to turn my code into a deployable unit of software? What role do CAB files, INF files, OSD files etc play in this? And how do I package up my control using Visual Studio 2010?
If there are any existing walk-through guides out there, I would be very grateful to be pointed in their direction - I haven't been able to find a comprehensive and easy-to-follow guide myself.
Many thanks.