I am trying to use PowerShell to set the SSL certificate on an IIS site for a self signed/local certificate.
I create the certificate:
$newCert =
New-SelfSignedCertificate
-DnsName www.mywebsite.ru
-CertStoreLocation cert:\LocalMachine\My
Then try to set the SSL bindings:
get-item
cert:\LocalMachine\MY\$newCert.Thumbprint |
new-item -path IIS:\SslBindings\0.0.0.0!443
as shown on this post: http://www.iis.net/learn/manage/powershell/powershell-snap-in-configuring-ssl-with-the-iis-powershell-snap-in
also shown here: Powershell IIS7 Snap in Assign SSL certificate to https binding
I also tried:
get-item
cert:\LocalMachine\MY\$newCert.Thumbprint |
new-item -path IIS:\SslBindings\*!443
To no avail, I'm not seeing the SSL Certificate set in the Edit Site Binding dialog.
Any thoughts?