Where can I program on the plug-in to condition files to download?
I can condition files on the install, lets say with Check: Is64BitInstallMode... example:
Source: "{#ver64}APPx64.exe"; DestDir: "{app}"; Check: Is64BitInstallMode
or
Source: "{#ver64}APPx86.exe"; DestDir: "{app}"; Check: not Is64BitInstallMode
I tried to combine:
Source: "{tmp}\APPx64.exe"; DestDir: "{app}"; Check: Is64BitInstallMode; Flags: external; ExternalSize: 804864
but it still download files on x86 PC
I don't want to download unnecessary files.
Thanks in advance,
Nelson