I am trying to set up a central certificate store for SSL and configure a web server to use it. I have the central cert store setup (and visible via the IIS MMC). The one thing I can not do is to set the bindings to enable a site to use SSL with the web site's cert from the CCS.
With a local cert, I'd do this:
$WBHT = @{Name = 'Default Web Site' ;Protocol = 'https';SslFlags = 2;Port = 443}
New-WebBinding @WBHT
$Cert = Get-Childitem Cert:... # get the cert for the server
$Cert | New-Item -Path IIS:\SslBindings\0.0.0.0!443
How do I do this for CCS based certs?