nsisdl 连接超时错误,使用有效的 URL(非 HTTPS)

huangapple go评论74阅读模式
英文:

nsisdl Connection timeout error with valid URL (not HTTPS)

问题

NSIS 3.08在Windows10上使用时,我遇到了使用NSISdl下载时出现"连接超时"错误的问题。

NSISdl::download "$1" "$6$2"

其中,$1是http://download.autodesk.com/us/support/files/autodesk_network_license/nlm11.14.1.3_ipv4_ipv6_win64.msi,$6是C:\Users\jsmithy\AppData\Local\Temp,$2是lmtools_install.msi。

nsisdl的结果是"连接超时"。

我已经尝试添加超时但没有改变。

英文:

Using NSIS 3.08 with Windows10, I'm getting a 'timed out on connecting' error with NSISdl for

NSISdl::download "$1" "$6$2"

where $1 is http://download.autodesk.com/us/support/files/autodesk_network_license/nlm11.14.1.3_ipv4_ipv6_win64.msi
$6 is C:\Users\jsmithy\AppData\Local\Temp
and $2 is lmtools_install.msi

the result of nsisdl is "Timed out on connecting"

I have tried adding a timeout but nothing changed.

答案1

得分: 1

该URL重定向到HTTPS,而NSISdl不支持该功能,请改用Inetc代替。

英文:

That URL redirects to HTTPS and NSISdl does not support that, use Inetc instead.

huangapple
  • 本文由 发表于 2023年2月24日 05:12:12
  • 转载请务必保留本文链接:https://go.coder-hub.com/75550368.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定