Install file from Internet in Inno Setup

Inno Setup 6.1 and newer has a built-in support for downloads. No 3rd party solution are needed anymore. Check the Examples\CodeDownloadFiles.iss in Inno Setup installation folder. The important parts of the example are: [Files] ; These files will be downloaded Source: “{tmp}\innosetup-latest.exe”; DestDir: “{app}”; Flags: external Source: “{tmp}\ISCrypt.dll”; DestDir: “{app}”; Flags: external [Code] var DownloadPage: … Read more

Inno Setup: Install file from Internet

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 required. It brings a decent download display and HTTPS and Mirror(s) support. Example: #include … Read more