Questions tagged [inno-download-plugin]

InnoDownloadPlugin (IDP) is a download plugin for Inno Setup. It allows to build webinstallers.

InnoDownloadPlugin is a download plugin for Inno Setup.

Website: https://mitrichsoftware.wordpress.com/

Download: https://bitbucket.org/mitrich_k/inno-download-plugin

Forum: https://groups.google.com/forum/#!forum/inno-download-plugin

Features

  • Supports Unicode & ANSI Inno Setup versions
  • FTP, HTTP and HTTPS protocols
  • Multiple languages
  • Free and open source under Zlib license
45 questions
18
votes
4 answers

Install file from Internet in Inno Setup

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?
5
votes
1 answer

How to create folder in Inno Setup

How can i create folder in code section? I use example script of inno download. [Code] //HERE I NEED TO CREATE FOLDER "Downloaded" procedure InitializeWizard(); begin itd_init; …
4
votes
2 answers

Download latest files during installation Inno Setup

Is it possible to script that during installation to download files from a web server with Inno Setup?
Wai Wong
  • 2,671
  • 4
  • 21
  • 17
4
votes
1 answer

download .zip files with IDP: Download plugin for Inno Setup, and unpack them

sorry for my english. Hi my installer will download files , by the addition of " IDP : Download plugin for Inno Setup," and I have a problem because they are downloaded in .zip format so need to be extracted , whether it is possible to be unpacked…
michal3210
  • 117
  • 1
  • 7
4
votes
3 answers

VCL Styles for Inno Setup having problems skinning some downloader page elements

I used VCL Styles for Inno Setup in an attempt to try to skin my installer and ran into a small issue I hope someone might be able to help with. I need to apologize in advance. I have been muddling through these for a while, taking clips of things…
4
votes
1 answer

Show the download progress by default and no hide button

When starting to download files from my setup, it only appears total progress and the button details to show what appears in the next image: What I want to do is to have that step by default without hitting details button and not showing the hide…
DeXon
  • 419
  • 4
  • 12
3
votes
1 answer

Customize "Downloading" message in Inno Download Plugin

Is there any way to change the message in downloading page? At the place of "Downloading..." I want to include the file name like "Downloading exe".
user13686758
3
votes
2 answers

Downloading file with Inno Setup only when user chooses to

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…
3
votes
0 answers

How can I use innosetup to automatically download files from Microsoft

I am using InnoSetup Tools Downloader plugin from here. It enables downloading external internet files during installation. While it can work in many cases, but in some case like this:…
2
votes
1 answer

Do not prevent installation if download fails with Inno Download Plugin

This is the code used to download any prerequisites during the installation, #include [Code] function UpdateReadyMemo(Space, NewLine, MemoUserInfoInfo, MemoDirInfo, MemoTypeInfo, MemoComponentsInfo, MemoGroupInfo, MemoTasksInfo: String):…
Codename K
  • 890
  • 4
  • 23
  • 52
2
votes
2 answers

Download based on the task selected with Inno Download Plugin?

I have been having a couple of problems trying to achieve what I want and I will discuss each issue separately. It concerns a help documentation setup file which I has asked about before. But now I am using IDP I need to change my logic and have it…
Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164
2
votes
1 answer

Download additional files based on contents of first download using IDP

Want to download files based on contents of first download using Inno Download Plugin (IDP). How to do that? Here is my code [Code] procedure InitializeWizard(); var line: string; line2: string; url: string; appname: string; begin …
user12106800
2
votes
1 answer

Inno Setup Download plugin not able to download file due to TLS 1.1/1.2 issue

While i'm trying to download the file from Inno Setup download plugin, it fails with following error: When explored more on this error I identified that enabling TLS 1.1 or TLS 1.2 from Internet Explorer settings it worked fine. But when I run the…
Sudhakar Tillapudi
  • 25,935
  • 5
  • 37
  • 67
2
votes
1 answer

Inno Setup: Download setup .bin slice files before installation starts

I am trying to create a distributable .exe file with Inno Setup tools and Inno Download Plugin. The resulting file is ~3GB in size, split in 6 parts (1 for the executable, 5 bins containing all the files). Would it be possible to keep the 5 bins…
L.Thanos
  • 23
  • 6
2
votes
1 answer

Installer, that downloads all the needed files from Internet directly to installation folder

So previously, I've used Inno setup to make an Installer.exe and let the users download that, and then install the program. The drawback is, the installer alone is 1.5GB and then after a long install, the user has +3GB of files PLUS the installer in…
1
2 3