gpt4 book ai didi

inno-setup - 创新设置 : Install file from Internet

转载 作者:行者123 更新时间:2023-12-03 23:23:42 24 4
gpt4 key购买 nike

我正在使用 Inno Setup 分发我的应用程序。
是否可以检查 Inno Script 的特定条件,并在需要时从 Internet 下载和安装一些文件。

最佳答案

Inno Download Plugin 通过 Mitrich 软件。

  • 它是一个 InnoSetup 脚本和 DLL,它允许您在安装过程中下载文件。
  • 它支持 FTP、HTTP 和 HTTPS。
  • 它是 InnoTools Downloader 的替代品。只需要少量更改。
  • 它带来了不错的下载显示和 HTTPS 镜子支持。


  • 例子:
    #include <idp.iss>

    [Files]
    Source: "{tmp}\file.zip"; DestDir: "{app}"; Flags: external; ExternalSize: 1048576

    [Code]
    procedure InitializeWizard();
    begin
    idpAddFileSize('http://127.0.0.1/file.zip', ExpandConstant('{tmp}\file.zip'), 1048576);

    idpDownloadAfter(wpReady);
    end.

    关于inno-setup - 创新设置 : Install file from Internet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6887428/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com