How to quickly create a dummy / self-signed certificate for sandbox testing

This is quick, simple recipe on how to creat a self-signed .pfx certificate for your sandbox in 1 minute using powershell. Step 1 – Create a new a self-signed certificate The New-SelfSignedCertificate cmdlet enables you to create a self-signed certificate. $cert = New-SelfSignedCertificate -DnsName www.domainname.co.za `-Type CodeSigning -CertStoreLocation Cert:\CurrentUser\My Step 2 – Verify that the… Continue reading How to quickly create a dummy / self-signed certificate for sandbox testing