1

我是 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
4

1 回答 1

2

仅当exec.exe最终用户系统上的路径中有 a 时才有效,请尝试ExecWait '"$INSTDIR\setup.exe" /passive'

于 2012-06-04T06:16:30.133 回答