== Create Service Certificate ==
To create a specific service certificate, we define the site name (IP) of our sevice the service along with the service name.
<code>makecert -sky <SITENAME> -iv <ROOTNAME>.pvk -n "CN=<SITE-IP>" -sv "<SITENAME>.pvk" -ic <ROOTNAME>.cer <SITENAME>.cer -sr currentuser -ss My</code><br/>
SITENAME ... Name of the service
SITE-IP ... IP of the service (which should be accessed from the client)<br/>
See [http://msdn.microsoft.com/en-us/library/bfsktky3%28VS.110%29.aspx MSDN] for details.
Examplewhere '''SITENAME''' ... Name of the service, '''SITE-IP''' ... IP of the service (which should be accessed from the client) (see [http:<br/>/msdn.microsoft.com/en-us/library/bfsktky3%28VS.110%29.aspx MSDN] for details). Example: <code>makecert -sky AugDemoIIS01 -iv AugmensysCA.pvk -n "CN=137.135.200.180" -sv "AugDemoIIS01.pvk" -ic AugmensysCA.cer AugDemoIIS01.cer -sr currentuser -ss My</code><br/>
{{Attention|While creating the certificate, the user is asked for a password to be entered, : please remember this password as it it is used for further steps.}}
== Convert Service Certificate for Import in IIS ==