“Invoke-WebRequest:基础连接已关闭:意外错误

“Invoke-WebRequest:基础连接已关闭:意外错误

以下是我的自定义脚本扩展中的代码

$AllProtocols = [System.Net.SecurityProtocolType]'Ssl3,Tls,Tls11,Tls12'
[System.Net.ServicePointManager]::SecurityProtocol = $AllProtocols
Invoke-WebRequest -Uri https://aka.ms/downloadazcopy-v10-windows -OutFile $env:C:\temp\azcopy.zip

当我运行自定义脚本扩展时,出现以下错误

“Invoke-WebRequest:基础连接已关闭:意外错误

答案1

我怀疑这是因为您尝试下载的 URL 不支持除 TLS 1.2 之外的任何内容。请将您的协议列表设置为 Tls12。

相关内容