我是 NSIS 安装创建者的新手,我需要运行一个外部可执行文件,因为这是先决条件,一旦完成,我将继续安装。我尝试了以下代码,但它只是将 exe 复制到安装路径。
Section "example" example
SetOutPath "$INSTDIR"
MessageBox MB_OK \
"The applications."
File "Prerequisites\setup.exe"
ExecWait '"exec" /i "$INSTDIR\setup.exe" /passive'
SetRebootFlag true
SectionEnd