This is the code used to download any prerequisites during the installation,
#include <idp.iss>
[Code]
function UpdateReadyMemo(Space, NewLine, MemoUserInfoInfo, MemoDirInfo, MemoTypeInfo, MemoComponentsInfo, MemoGroupInfo, MemoTasksInfo: String): String;
begin
idpAddFileSize('<url>', ExpandConstant('{commonappdata}\<my file name>'), <my file size>);
idpDownloadAfter(wpReady);
end;
However, if there is no internet connection it disables the Next button from continuing the installation. Here is the dialog,
The installation needs to continue even if any download fails. How to fix this?