Hi guys is it possible to create your own SSL cert for IIS 6? If so does anyone have a link to a good guide on the web?

Thank!

John

link|improve this question

64% accept rate
feedback

3 Answers

up vote 10 down vote accepted

Yep, its pretty straight forward:

  1. Download and install the IIS 6 Resource Kit
  2. Select SelfSSL from the start menu, under programs->IIS Resources
  3. Read the instructions shown at the command prompt

To generate the cert, run selfssl with any of the options you need selected, an example command would be:

selfssl /N:CN=www.site.com /K:1024 /S:2874 /P:443 /V:365

This will create a cert for www.site.com, with a key size of 1024, for site 2874 in IIS, on port 443, valid for one year.

Note that this certificate will not be initially trusted by any browsers, as you are not a trusted authority.

link|improve this answer
1  
Life & Evening Saver. Thanks – bladefist Nov 29 '11 at 23:11
feedback

Try to use X509Builder at http://www.we-coffee.com/x509builder.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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