inno-download-plugin

Building memo text for Inno Download Plugin

Deadly 提交于 2021-02-08 09:05:25
问题 I have reviewed the help documentation for IDP and I cannot find any functions for building the memo text of the files to download. Previously I was using DwinsHs and it has been giving me problems. But I was able to use: function DwinsHs_MemoDownloadInfo(Space, NewLine: String): String; var i: Integer; begin Result := ''; for i := 0 to GetArrayLength(DwinsHs_DownloadsList) - 1 do begin if DwinsHs_DownloadsList[i].Required then begin Result := Result + Space + ExtractFileName(DwinsHs

Download latest files during installation Inno Setup

你。 提交于 2019-12-17 19:05:35
问题 Is it possible to script that during installation to download files from a web server with Inno Setup? 回答1: Take a look at the InnoTools Downloader (http://www.sherlocksoftware.org/page.php?id=50). 回答2: InnoTools Downloader, recommended by the accepted answer, has not been updated since 2008. It does not work with Unicode version of Inno Setup (so it does not work with Unicode-only Inno Setup 6) and does not support HTTPS (among other). Do not use it. I'm re-posting the answer by @Jens A.

Apply Download file condition in inno-setup

a 夏天 提交于 2019-12-12 04:46:06
问题 in my setup I give the user the ability to decide which program to install, I use the IDP plugin to download the programs how can I decide which programs to download according to user selection? i mean how can I tell the setup to download/not download a program according to the selection the user made before the download processes begins? --Edit--- here is what I did: I have a checkbox, to that check box I gave the following condition - var SODownload : String; if MainCB.Checked = True then

Hide Download files page (IDP)?

让人想犯罪 __ 提交于 2019-12-11 13:23:49
问题 I use "Inno download plugin" in my inno installer, I wish to download the files before I get to "wpInstalling" and to hide the IDP download page, Now here is the problems I encountered: If I use "idpAddFile" function i must specify "idpDownloadAfter" and thus i cant hide the IDP download page from the user If i use "idpDownloadFile" function my inno setup becomes "slaggy" and slow for some strange reason 来源: https://stackoverflow.com/questions/25175176/hide-download-files-page-idp

Downloading file with Inno Setup only when user chooses to

♀尐吖头ヾ 提交于 2019-12-10 11:42:45
问题 Question: I’d like to know how to script to download a second file which is a zip but initially give a choice between two zip files; download, unzip and delete the zip. The zip files each have different names but the contents have a different name to the zips (each the same name); no renaming required. This question is a little similar to Apply Download file condition in inno-setup The files in question are downloaded via the SourceForge website. The programs (clones) these files are intended

Authenticated download with Inno Setup

自闭症网瘾萝莉.ら 提交于 2019-12-08 12:49:44
问题 I have files on my HTTP server which should be downloaded. I can properly download them from usual HTTP-server, but my server asks for authorization during download (this download should be protected). How can I include login/password information to exe-file or to force Inno Setup to show authorization window to user? Because now Inno Setup just shows me error window: access denied , with no possibility to enter login/password. I'm using Inno Download Plugin for this purpose. 回答1: Use

Downloading file with Inno Setup only when user chooses to

隐身守侯 提交于 2019-12-06 15:46:58
Question: I’d like to know how to script to download a second file which is a zip but initially give a choice between two zip files; download, unzip and delete the zip. The zip files each have different names but the contents have a different name to the zips (each the same name); no renaming required. This question is a little similar to Apply Download file condition in inno-setup The files in question are downloaded via the SourceForge website. The programs (clones) these files are intended for are either not listed on SF or have changed purpose. After fixing the PChar bug: InnoTools

Inno Setup: Install file from Internet

百般思念 提交于 2019-12-03 12:44:44
问题 I am using Inno Setup to distribute my application. Is it possible to check in Inno Script for a particular condition and download and install some file from internet if required. 回答1: Yes, there is a library called InnoTools Downloader which has samples that do pretty much this. They can be conditioned on anything you want using normal Inno code. 回答2: Inno Download Plugin by Mitrich Software. It's an InnoSetup script and DLL, which allows you to download files as part of your installation.

Inno Setup: Install file from Internet

∥☆過路亽.° 提交于 2019-12-03 02:21:55
I am using Inno Setup to distribute my application. Is it possible to check in Inno Script for a particular condition and download and install some file from internet if required. Yes, there is a library called InnoTools Downloader which has samples that do pretty much this. They can be conditioned on anything you want using normal Inno code. Inno Download Plugin by Mitrich Software. It's an InnoSetup script and DLL, which allows you to download files as part of your installation. It supports FTP, HTTP and HTTPS. It's kind of a drop-in replacement for InnoTools Downloader. Only few changes