我尝试在 NSIS 脚本中安装程序 (.exe) 这是我的代码
;Install PDFXVIEWER
SetOutPath "$INSTDIR\PdfViewer"
File /r "file\PdfViewer\PDFXV.exe"
ExecWait 'msiexec /i "file\PdfViewer\PDFXV.exe" /VERYSILENT /NORESTART /DIR="$INSTDIR\PdfViewer"'
但是,在安装过程中,我弹出了一个 Windows 安装程序!:http: //i.stack.imgur.com/g8Gdh.jpg
并且根本没有安装该程序。
谁能指出我的错误?
谢谢