是否可以在不导航到 IIS:\SSLBindings 的情况下创建 SSLBinding
我正在尝试使用 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 绑定?
问候, 哎呀
Am trying to create SSLBinding using powershell. I have certificate in a certificate store and i proceed as below
$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
is it possible to create ssl binding without navigating to IIS:\SslBindings ?
Regards,
Jeez
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以根据您的情况尝试一下吗:
现在我已经能够进行测试了。
Can you try, in your context :
Now I've been hable to test.