如何为 NSI (Nullsoft Scriptable Install System) 创建一个有效的卸载程序?
时间: 2024-10-27 18:04:38 浏览: 10
NSI(Nullsoft Scriptable Install System)是一种Windows安装脚本语言,用于创建自定义软件的安装、卸载程序。要为NSI创建一个有效的卸载程序,你需要按照以下步骤操作:
1. **开始编写**:
使用NSIS的`UninstallSection`标签来定义卸载部分。在这个部分,你可以设置卸载前的动作,如删除注册表项、文件清理等。
```nsis
Section "Uninstall"
; 这里添加卸载动作
DeleteRegKey HKLM "Software\YourCompany\YourApp" "UninstallerKey"
Delete "$SMPROGRAMSFolder\YourAppName\Uninstaller.exe"
RMDir "$ProgramFiles\YourCompany\YourApp"
SectionEnd
```
2. **确认条件**:
确保在`Uninstall`节之前有一个检查是否需要执行卸载的部分,比如`UninstallOnlyIfInstalled`条件。
```nsi
Section "UninstallOnlyIfInstalled"
Push $INSTALLEDPRODUCTNAME
Push "$INSTDIR"
Call卸载前检查函数
Pop $0
IfErrors NoUninstall
SectionEnd
Function卸载前检查函数:
SectionInit
ReadRegStr $0 HKLM "Software\YourCompany\YourApp" "ProductName"
SectionEnd
```
3. **提供用户交互**:
可能需要显示卸载对话框,让用户确认是否要继续。
```nsi
RequestExecutionLevel admin
ShowInstDetails show
AbortInstallPrompt off
```
4. **执行卸载**:
最后,在`SectionEnd`标签内的`Quit`指令会结束安装过程并运行卸载部分。
```nsi
SectionEnd
Function .onInit
; 初始化其他部分...
EndFunction
```
阅读全文