Sherlock软件InnoTool Downloader帮助代理支持

时间:2015-11-04 10:17:29

标签: proxy inno-setup inno-download-plugin

InnoTools Downloader,是安装过程中下载文件的绝佳工具。

有没有办法通过下载支持代理设置?

在2008年的发行说明中,它提到了" - Preliminary support for proxy server autodetection"

我在help文件中找不到任何内容。

1 个答案:

答案 0 :(得分:1)

InnoTools下载程序使用InternetQueryOption WinAPI functiondwOption = INTERNET_OPTION_PROXY)来自动检测要使用的代理。

无法明确配置代理。

另一方面,Inno Download Plugin(您标记了您的问题)确实支持显式代理配置:

procedure idpSetProxyMode(mode: String);             external 'idpSetProxyMode@files:idp.dll cdecl';
procedure idpSetProxyName(name: String);             external 'idpSetProxyName@files:idp.dll cdecl';
procedure idpSetProxyLogin(login, password: String); external 'idpSetProxyLogin@files:idp.dll cdecl';

我也没有任何经验,但InnoTools下载器自2008年以来一直没有更新,而Inno Download Plugin似乎仍在维护。