Search
Home IIS.NET Forums IIS 7 & IIS 8 PowerShell Create sslbinding for Central Certificate Store websites
Last post Feb 07, 2013 05:27 PM by Jason Helmick
1 Post
Feb 07, 2013 05:27 PM|LINK
So, I'm trying to figure out how to solve the sslbinding issue with CCS. Normally after you create a web binding with New-webBinding you can create the sslbinding with something like this:
$cert = Get-ChildItem -Path Cert:\LocalMachine\My | where {$_.subject -like "*company*"} | Select-Object -ExpandProperty Thumbprint
Get-Item -Path "cert:\localmachine\my\$cert" | New-Item -Path IIS:\SslBindings\ 0.0.0.0!443
However, there is no 'cert' to get if yo want the binding to use CCS. Has anyone figured out a way to create this?
Thanks!!!
Jason
Jason Helmic...
1 Post
Create sslbinding for Central Certificate Store websites
Feb 07, 2013 05:27 PM|LINK
So, I'm trying to figure out how to solve the sslbinding issue with CCS. Normally after you create a web binding with New-webBinding you can create the sslbinding with something like this:
$cert = Get-ChildItem -Path Cert:\LocalMachine\My | where {$_.subject -like "*company*"} | Select-Object -ExpandProperty Thumbprint
Get-Item -Path "cert:\localmachine\my\$cert" | New-Item -Path IIS:\SslBindings\ 0.0.0.0!443
However, there is no 'cert' to get if yo want the binding to use CCS. Has anyone figured out a way to create this?
Thanks!!!
Jason