dan-
dan-

Reputation: 301

what are all the necessary steps to deploy a trusted activex control built with managed code

i have an activex that was built with c#. as part of the build process, the cab file is signed with a commercial code signing certificate.

when it is downloaded and installed we run into multiple issues:

its not clear what circumstances trigger it, but we will sometimes get the noname control from unknown publisher message when ie wants to update the control.

exhaustive reseach indicates that everyone has an opinion about this and no two of them are the same. so where does one get the official guide to deploying managed activex controls that are signed?

Upvotes: 1

Views: 263

Answers (1)

Menace
Menace

Reputation: 1070

Each individual dll, exe,ocx must be signed using the signtool.exe or other mechanism. I've never heard of the signing getting stripped off by placing them in the cab. I'm guessing you may be using the output of a build that has not yet been signed to build the cab ? I have some potentially useful ramblings on my code signing experiences at: http://www.menasoft.com/blog/?p=223

Upvotes: 1

Related Questions