0

块引用

我是 NSIS 的新手。我已经有一个包含服务的 Windows 应用程序,从那里进行通信,我有一个创建的安装项目,我使用 .NET 开发。现在我想知道如何将此设置转换为 NSIS 设置。到目前为止,我已经创建了欢迎页面、许可证页面,现在我被困在组件页面中。由于我的项目也包含许多第 3 方 dll。我不知道如何开始。任何人都可以建议如何使用 NSIS 吗?

块引用

4

1 回答 1

3

组件页面显示脚本中的命名部分,用户可以选择要安装的组件:

Page components
Page instfiles

Section "Main Program"
SectionIn RO ; Read only, always installed
Setoutpath $instdir
File "myapp.exe"
SectionEnd

Section "Foo component"
Setoutpath $instdir\plugins
File "Foo.dll"
SectionEnd

Section "Bar component"
Setoutpath $instdir\plugins
File "Bar.dll"
SectionEnd
于 2012-12-26T21:23:01.000 回答