vote up 0 vote down star
2

We deployed a windows application via ClickOnce and a self signer certificate that we created. We are now looking in to getting a Authenticode Certificate from a Certificate Authority like VeriSign.

When we start signing our ClickOnce manifests with the new certificate, will our users have to re-install the application?

Are there any known migration paths for dealing with our scenario?

Thanks

flag

73% accept rate

2 Answers

vote up 1 vote down

Yes, you can do this without the users having to re-install, but it's tricky. The key is to realise that the application manifests have an Authenticode signature (to identify the publisher) and a strong name signature (to prevent tampering). The trick is to use your old certificate for the strong name signature, and the new certificate for the Authenticode signature.

Neither VS2005/Mage or the sign tool (signtool.exe) from the .NET Framework SDK supports this kind of signing. But the Windows Server 2003 R2 Platform SDK contains a newer version of signtool.exe with a new switch "/manifest" and with options to use different keys for signing. With this tool you can sign the ClickOnce manifests with different keys for each of the two signatures.

You can find more details here.

link|flag
vote up 0 vote down

No. If you sign you application with a different certificate, it will be viewed as a different application.

Here is an article that may help. It describes how to add some code to automatically uninstall the old version of the application and install the new version. However, the fact remains, applications signed with different certs are treated as separate applications.

link|flag

Your Answer

Get an OpenID
or

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