Powershell - TLS1.2支持

时间:2015-11-08 12:47:32

标签: api rest powershell tls1.2

你知道是否有办法在powershell中启用TLS1.2(即用于invoke-webrequest或invoke-restmethod)?

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

/帕特里克

1 个答案:

答案 0 :(得分:18)

有!

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

/帕特里克