英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论