尝试使用PowerShell创建SSLBinding。我在证书商店有证书,我按照以下步骤进行操作
$certificate = Get-ChildItem cert:\ -Recurse | Where-Object {$_.FriendlyName -match $CertificateName } | Select-Object -First 1
cd IIS:\SslBindings
Get-Item $certificate | New-Item 0.0.0.0!$Port
是否可以在不导航到IIS的情况下创建ssl绑定:\ SslBindings?
此致 哎呀
答案 0 :(得分:3)
你可以尝试,在你的背景下:
PS C:\> new-item -path "IIS:\SslBindings\0.0.0.0!9004" -Value $certificate
IP Address Port Store Sites
---------- ---- ----- -----
0.0.0.0 9004 My
PS C:\> dir IIS:\SslBindings
IP Address Port Store Sites
---------- ---- ----- -----
0.0.0.0 8172 MY
0.0.0.0 9000 My
0.0.0.0 9001 My
0.0.0.0 9002 My
0.0.0.0 9003 My
0.0.0.0 9004 My
现在我一直很难测试。