您是否知道是否可以在Powershell中启用TLS1.2(例如,invoke-webrequest或invoke-restmethod)?

默认情况下,Powershell似乎使用TLS1.0,它与我们所有的Web服务都不兼容。

/帕特里克

最佳答案

有!

[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12

/帕特里克

关于api - Powershell-TLS1.2支持,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33594137/

10-10 03:08