Reputation: 272
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.
Upvotes: 1
Views: 181
Reputation: 2066
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.
Upvotes: 4