Questions tagged [dwinshs]

DwinsHs is a Pascal script for Inno Setup that allows you to download files from the Internet during the installation process, or visit the WEB server script. The FTP, HTTP and HTTPS protocols are supported. You can use the script in your setup package to download addition components from Internet, or verify the license key online from your server, etc.

DwinHs is an extension program for Inno Setup that allows you to easily download files from the Internet during the installation process, or visit the WEB server script. The FTP, HTTP and HTTPS protocols are supported.

You can use the script in your setup package to download additional components from the Internet, or verify the license key online from your server, etc.

The user manual is available online.

6 questions
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

DwinsHs for Inno Setup: Edit HTTP_HEADER const for URL to download during the install

I posted this question DwinsHs for Inno Setup: How to add an apikey HTTP header of a request? And now I want to edit the HTTP_HEADER during the install. The HTTP_HEADER is a const. I changed it to a var to be able to edit it. But when I do this,…
1
vote
1 answer

DwinsHs for Inno Setup: How to add an apikey HTTP header of a request?

I'm using a third party tool by the name of DwinsHs for Inno Setup. This third party tool provides me the capability for downloading files as part of the installation. I want to send an HTTPS request to remote server and I would like to pass an…
Carlinto
  • 33
  • 5
1
vote
1 answer

How to use ISPP to split a file size into lo / hi bits for the DwinsHs_Check function

Take this script: Source: "{tmp}\HelpDocSetup.exe"; \ DestDir: "{app}"; \ Flags: external deleteafterinstall; \ Tasks: downloadhelp; \ Check: DwinsHs_Check( ExpandConstant('{tmp}\HelpDocSetup.exe'), '{#HelpDocSetupURL}', 'My_Setup',…
Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164
0
votes
1 answer

Can we make the DwinHs Inno Setup download plugin work faster?

DwinHs has a DwinsHs_Data_Buffer_Length macro. I have set it to a value of 8192 but the download speeds are still rather slow. For example, I have a 200 MBit connection and the file is 25 MB. It takes two and a half minutes to download. I have read…
Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164
0
votes
1 answer

Inno Setup: Ignore SSL Certificate errors using the third party tool DwinsHs

I use a third party tool by the name of DwinsHs for Inno Setup. This third party tool provides me the capability for downloading files as part of the installation. I want to send an HTTPS request using the function DwinsHs_ReadRemoteURL. I…
yuval
  • 2,848
  • 4
  • 31
  • 51