Posts

Showing posts from May, 2017

Wildcard self-signed certificate for SharePoint apps

The following scripts are helpful to create wildcard self-signed SSL certificate for SharePoint 2013 apps on development environment. makecert.exe -n "CN=SharePoint Development Root CA,O=<your org domain>.COM,OU=Development,L=<your location>,S=<your state>,C=<your country>" -pe -ss Root -sr LocalMachine -sky exchange -m 120 -a sha1 -len 2048 -r makecert.exe -n "CN=*.<your app domain>" -pe -ss My -sr LocalMachine -sky exchange -m 120 -in " SharePoint Development Root CA " -is Root -ir LocalMachine -a sha1 -eku 1.3.6.1.5.5.7.3.1