Question

I am aware of "Click once approach", I find a problem with its one year certificate, and if I want to have more than one year certificate, I have to purchase the certificate from them.

I want to know, If there is any way to address this, So i can have my clients get updates for many years.

Was it helpful?

Solution

You can generate a ClickOnce certificate with any expiration date (and any Issued To/Issued By values):

makecert -sv ClickOnceTestApp.pvk
     -n CN=Sample ClickOnceTestApp.cer
     -b 01/01/2012 -e 12/31/2100 -r

It will be a self-signed certificate, same as generated by Visual Studio for click once deployments.

from http://bernhardelbl.wordpress.com/2012/03/20/create-a-non-expiring-test-certificate-pfx-for-clickonce-applications/

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top