Invoke-webrequest 未能創建 SSL/TSL 連線
明明只是想下載個檔案,也能…
Invoke-webrequest 出錯,未能創建 SSL/TSL 連線
工作環境:
Windows 10
WSL installing on non-system Drive
查詢現階段既有的連接安全協議
[Net.ServicePointManager]::SecurityProtocol
此時應該只有 Ssl3, Tls
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Ssl3 -bor [Net.SecurityProtocolType]::Tls -bor [Net.SecurityProtocolType]::Tls11 -bor [Net.SecurityProtocolType]::Tls12
再查
[Net.ServicePointManager]::SecurityProtocol
應該變成
Ssl3, Tls, Tls11, Tls12
再次 Invoke-webrequest 可行
收工!
留言
張貼留言