NSIS を使用して、Web サーバーからファイルをインストールするインストーラーを作成しています。NSISdl プラグインを使用してファイルをダウンロードしていますが、ダウンロードしていません。単に Download Failed: failed to open file と表示されます。
これはダウンロードを行っているセクションです。
Section "Aquiva"
; Set output path to the installation directory.
SetOutPath $INSTDIR
;Include files from this location, and copy that to the current
;out path
NSISdl::download http://41.78.239.158/Aquiva.exe
Pop $R0 ;Get the return value
StrCmp $R0 "success" +3
MessageBox MB_OK "Download failed: $R0"
Quit
SectionEnd ; end the section