我正在尝试使用 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:\SslBindings 的情况下创建 ssl 绑定(bind)?
问候,天啊
你能在你的上下文中尝试吗:
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
现在我可以测试了。
我是一名优秀的程序员,十分优秀!