【发布时间】:2015-09-25 17:23:52
【问题描述】:
我正在尝试使用下载文件
InetLoad::load "https://www.dropbox.com/xxx/xxx.exe" "$INSTDIR\temp\xxx.exe"
但这给了我连接错误。知道如何克服连接错误。
我也试过 inetc::get 但没用。我猜 inetc 插件也有同样的问题。
【问题讨论】:
标签: installation nsis
我正在尝试使用下载文件
InetLoad::load "https://www.dropbox.com/xxx/xxx.exe" "$INSTDIR\temp\xxx.exe"
但这给了我连接错误。知道如何克服连接错误。
我也试过 inetc::get 但没用。我猜 inetc 插件也有同样的问题。
【问题讨论】:
标签: installation nsis
INetC 使用与 Internet Explorer 相同的 Internet 库 WinInet。会不会是你的网络问题?它对我来说很好用:
Section
InitPluginsDir
inetc::get "https://www.dropbox.com/s/xxxxxxx/yyyy.exe?dl=1" "$PluginsDir\vcredist_x86.exe" /END
Pop $0
DetailPrint $0
SectionEnd
您是否尝试过使用 WireShark 或 Fiddler 检查网络流量?
【讨论】: