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
2
votes
1 answer

Running a program after it is downloaded in Code section in Inno Setup

How do I run an application I have downloaded over the Internet, in the code section using, and also wait for that application to finish running. I have, using InnoTools downloader, downloaded these two files and I want to, after the second one is…
2
votes
1 answer

downloading files over the internet, if the component has been selected (WITH Inno Tools Downloader)

This code actually download me the files and it does not matter whether the selected component is "test" or not. I want those two files download, if you select a component, can do that? I use Inno Inno Setup 5 + Tools Downloader) [Components] Name:…
2
votes
1 answer

Is it possible to download files from a secure site (https) in the inno installer?

I am working on a C# project and using Inno installer. I need to check for automatic updates in my installer and if update is available, then the installer should download the newer binaries from a secure (HTTPS) website using user authentication…
1
vote
1 answer

Download file from internet (HTTPS) using Inno Setup version 5 (5.3.11) only

I cannot use Inno Setup 6 or above (which has built-in download support) as many of my users are still using Windows 7 (without any updates like SP1) and setup created with version 6 is failing there (even after Setting MinVersion to 6.0). What I…
1
vote
1 answer

Building memo text for Inno Download Plugin

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…
Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164
1
vote
1 answer

Inno Download Plugin - Resizeable?

Is it possible to make the Inno Download Plugin wizard page support resizing? It doesn't fit well in Inno 6.
Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164
1
vote
1 answer

Download and run sub install - Inno Download Plugin progress bar does not move during download

Ok, so I created the following iss but I the progress bar does not move. I want the setup file to download and run the other setup program. Everything works fine except the progress bar does not move. #define MyAppName "My Program Setup…
1
vote
0 answers

Inno Setup: how can I execute multiple files after downloading them?

I'm very new with Inno setup and programming all together. I have also downloaded Inno Download Plugin. This is the code that I have: #include [Setup] ; NOTE: The value of AppId uniquely identifies this application. ; Do not use the same…
Macs
  • 53
  • 1
  • 6
1
vote
1 answer

Inno Setup Download file from location based on user input

I wondering how send input from UserPage to idpAddFile to download it by Inno Download Plugin. After download I would like to use that zip and install app. For now I have this: var UserPage: TInputQueryWizardPage; procedure…
John Doe
  • 147
  • 1
  • 1
  • 10
1
vote
2 answers

Inno Download Plugin: skip download if not exists...?

How to skip automatically a download if the url doesn't exists or there isn't internet connection...? Thanks in advance & cheers... ;-) [Code] procedure InitializeWizard(); begin idpAddFile('http://127.0.0.1/test1.zip',…
alfreire
  • 99
  • 1
  • 7
1
vote
1 answer

InnoSetup: Check .NET Framework - installation not working

Hi I am trying to integrate .NET Framework version check and auto-install in my Inno Setup script. I am using the code I found here: .../installing-net-framework-4-5-automatically-with-inno-setup/` The problem is, the code isn't working. The script…
AntikM
  • 636
  • 4
  • 13
  • 28
1
vote
1 answer

Inno Setup torrent download implementation

I am currently using Inno Download Plugin to download files for my installer, the biggest problem with this is that it fails to download the file correctly. Because of many reasons like bad connection. I would like to add an alternative method to…
1
vote
1 answer

Inno Download Plugin - Only download updated files

I'm trying to find the best way of updating my program using Inno Setup and Inno Download Plugin (IDP). My program is around 3.5gb in size so finding a way where the user doesn't have to download 3.5gb everytime I release a 100mb update is really…
callum
  • 45
  • 4
1
vote
1 answer

Country based download in Inno Setup

I am trying to use Inno Setup for my software. Currently my software is getting over 6000 downloads per day from different Geo. The issue is my software perform differently for each geo, so I have created different exe for each geo. Currently am…
user3417768
1
vote
0 answers

Download start & download end events in inno

Is there a way to address the following events - 1. when IDP started to download a file? 2. when IDP Finished to download a file? I wish to send an HTTP request on the above events, please help *IDP - inno download plugin
ElramV
  • 325
  • 4
  • 16