是否可以在不导航到 IIS:\SSLBindings 的情况下创建 SSLBinding

发布于 2024-11-06 13:54:59 字数 353 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

命硬 2024-11-13 13:54:59

您可以根据您的情况尝试一下吗:

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

现在我已经能够进行测试了。

Can you try, in your context :

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

Now I've been hable to test.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文