Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Create a self signed certificate for development/testing purposes with PowerShell
$cert = New-SelfSignedCertificate -DnsName mydemowebapp.net -CertStoreLocation cert:\LocalMachine\My
$pwd = ConvertTo-SecureString -String "MyPassword" -Force -AsPlainText
Export-PfxCertificate -Cert $cert -FilePath C:\temp\cert.pfx -Password $pwd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment