Self Signing Certificate for IIS
Create a self signing certificate for IIS VS2005 provides tools to do this which is called makecert and pvk2pfx. First all you need to do is run the following batch file and specify a name for it. For example yourBatchFile.bat testCert The content of batch file is as follows makecert -r -pe -n "CN=testCert" -sky exchange -sv %1.pvk %1.cer pvk2pfx -pvk %1.pvk -spc %1.cer -pfx %1.pfx Once you have this installed, please goto Start->Run->MMC->File->Add SnapIn->Add->Certificates A wizard will appear asking you the scope of your certificates. Choose Computer account and Finish. Select Local Computer and again click Finish. Click Close and then OK. This will bring you to a Certificates Console . Expand Personal -> Certificates, right click and select Import . The wizard will prompt you for the certificate that you have generate earlier. Provide the test.pfx. When ask for password click Next, Next and Finish . You need to repeat the same process for Trusted Ro