gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-03 12:48:35 26 4
gpt4 key购买 nike

我正在尝试使用 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

现在我可以测试了。

关于ssl - 是否可以在不导航到 IIS :\SSLBindings 的情况下创建 SSLBinding,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5962559/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com