我希望将安装程序提取的文件部分和卸载程序要删除的文件分开,而两个部分的部分名称相同。
代码:
#Initialize variable
!define APPLICATION_NAME "Demo"
#Installer section
Section "${APPLICATION_NAME}"
SetOutPath "$INSTDIR"
WriteUninstaller "$INSTDIR\Uninstaller.exe"
SectionEnd
#Uninstaller section
Section "${APPLICATION_NAME}"
Delete "$INSTDIR\Uninstaller.exe"
RMDir "$INSTDIR"
SectionEnd
图片:
答案 0 :(得分:0)
来自文档:
卸载程序部分名称的前缀为“un。”
Section "Demo"
SectionEnd
Section "un.Demo"
SectionEnd