Disable-TlsCipherSuite:HRESULT 异常:0xD0000225

Disable-TlsCipherSuite : Exception from HRESULT: 0xD0000225

当我在 windows 服务器的 powershell 中禁用密码 TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 时, 我收到此错误消息

Disable-TlsCipherSuite : Exception from HRESULT: 0xD0000225
At line:1 char:1
+ Disable-TlsCipherSuite -Name "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Disable-TlsCipherSuite], COMException
    + FullyQualifiedErrorId : Exception from HRESULT: 0xD0000225,Microsoft.WindowsAuthenticationProtocols.Commands.RemoveTlsCipherSuiteCommand

错误是什么意思,如何解决? 感谢您的任何建议。

该错误仅表示密码已被禁用....

尝试Enable-TlsCipherSuite TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384Disable-TlsCipherSuite TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 应该不会出现错误

运行 Powershell 以管理员身份试一下

对我有用。