inno-tools-downloader

InnoTools Downloader not working with Inno 5.5

假装没事ソ 提交于 2019-12-22 05:41:33
问题 On the recommendation of several posts here on SO, I've been working with the InnoTools Downloader to try to install a 3rd party dependency for our app during the Install script in Inno setup. Unfortunately the InnoTools Downloader hasn't been updated in a few years, and is starting to look like it's incompatible with the current Inno Tools setup (5.5.2 (u) on my machine at present). The PChar parameters in ITD have been replaced by PAnsiChar parameters, and when I try to run the various ITD

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.

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

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

InnoTools Downloader not working with Inno 5.5

别等时光非礼了梦想. 提交于 2019-12-05 07:15:52
On the recommendation of several posts here on SO, I've been working with the InnoTools Downloader to try to install a 3rd party dependency for our app during the Install script in Inno setup. Unfortunately the InnoTools Downloader hasn't been updated in a few years, and is starting to look like it's incompatible with the current Inno Tools setup (5.5.2 (u) on my machine at present). The PChar parameters in ITD have been replaced by PAnsiChar parameters, and when I try to run the various ITD_xxx procedures it gives me varying degrees of fail: ITD_DownloadFiles gives a type mismatch error and

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