在NSIS安装程序中包含文件,但不一定安装它们吗?

时间:2018-09-11 16:36:04

标签: windows installation installer nsis

尝试从头开始构建自定义NSIS安装程序。

我看到了一个File命令,其中包含要安装的文件,但是我很难弄清楚如何有选择地安装文件。我的用例是,我想为.NET Core x86应用程序,.NET Core x64应用程序和.NET 4.6.1 AnyCpu应用程序创建一个安装程序。

我想我已经找到了如何确定文件应该去的位置...但是在64位计算机上,我不想安装32位文件,反之亦然。 32位操作系统。

File命令建议输出。如何将所有三个项目的目录都包含在安装程序中,而实际上只为系统安装适当的文件?

2 个答案:

答案 0 :(得分:1)

NSIS提供了几种检查条件的方法,例如StrCmpIntCmp,但是最简单的方法可能是使用LogicLib

示例:

!include "LogicLib.nsh"
!include "x64.nsh"

Section
  ${If} ${RunningX64}
      File "that_64bit_file"
  ${Else}
      File "that_32bit_file"
  ${EndIf}
SectionEnd

答案 1 :(得分:1)

有两种方法可以有条件地安装文件。如果不需要让用户选择,则可以根据某些条件执行所需的File命令:

!include "LogicLib.nsh"
!include "x64.nsh"

Section
  SetOutPath $InstDir
  ${If} ${RunningX64}
      File "myfiles\amd64\app.exe"
  ${Else}
      File "myfiles\x86\app.exe"
  ${EndIf}
SectionEnd

如果希望用户能够选择,可以将File命令放在不同的部分:

!include "LogicLib.nsh"
!include "x64.nsh"
!include "Sections.nsh"

Page Components
Page Directory
Page InstFiles

Section /o "Native 32-bit" SID_x86
  SetOutPath $InstDir
  File "myfiles\x86\app.exe"
SectionEnd

Section /o "Native 64-bit" SID_AMD64
  SetOutPath $InstDir
  File "myfiles\amd64\app.exe"
SectionEnd

Section "AnyCPU" SID_AnyCPU
  SetOutPath $InstDir
  File "myfiles\anycpu\app.exe"
SectionEnd

Var CPUCurrSel

Function .onInit
  StrCpy $CPUCurrSel ${SID_AnyCPU} ; The default
  ${If} ${RunningX64}
    !insertmacro RemoveSection ${SID_x86}
  ${Else}
    !insertmacro RemoveSection ${SID_AMD64}
  ${EndIf}
FunctionEnd

Function .onSelChange
  !insertmacro StartRadioButtons $CPUCurrSel
    !insertmacro RadioButton ${SID_x86}
    !insertmacro RadioButton ${SID_AMD64}
    !insertmacro RadioButton ${SID_AnyCPU}
  !insertmacro EndRadioButtons
FunctionEnd