IIS: Created self signed certificates using makecert.exe for local IIS
You have learned how to run the local IIS on https with self signed certificate with my previous blog http://iistipsandtricks.blogspot.in/2015/08/make-your-site-work-with-https-on-local.html. Now you want to get rid of the error you get when you first time get when you run your site with a untrusted self signed certificate. Also if you are working with SAS platform then you need to send authentication token which require trusted certificate. These are steps below to make it work. 1. Open the Developer command prompt for visual Studio. 2. Run the below 2 commands on that window command prompt. makecert -r -n "CN=localhost" -b 01/01/2000 -e 01/01/2099 -eku 1.3.6.1.5.5.7.3.1 -sv localhost.pvk localhost.cer cert2spc localhost.cer localhost.spc pvk2pfx -pvk localhost.pvk -spc localhost.spc -pfx localhost.pfx You can do selecting all the 2 commands and paste to the command window and hit enter. 3. This above command will ask you 3-4 times for the password...