我正在将我们的 NSI 安装程序移植到 Linux 和 Mac 而不是 Windows,以便更好地与我们的 Maven 构建系统集成。
我们需要签署我们的安装程序和卸载程序。这是按照 http://nsis.sourceforge.net/Signing_an_Uninstaller 中的建议完成的,但我刚刚意识到它试图运行 tempinstaller 以强制它生成 uninstaller.exe,然后可以对其进行签名。
很明显,这个技巧在 *Nix 系统上效果不佳,这使得这部分过程不可移植。
有没有人有更好的解决方案。我不是 NSIS 的专家,想知道是否有一种聪明的方法来获取 uninstall.exe 以便对其进行签名?
我认为没有真正的解决方案。
安装程序和卸载程序使用相同的exe代码,并且在启动时只检查一个标志(
FH_FLAGS_UNINSTALL
中的firstheader
)以查看它是否是卸载程序。仅仅翻转这个位是不够的,程序将无法通过 CRC 检查,即使你绕过卸载程序数据被压缩,所以你必须将它解压缩到文件中的正确位置。要真正做到这一点,您必须编写一个自定义工具。在exec.c中搜索EW_WRITEUNINSTALLER
.就可以在NSIS源码中看到这个操作
我们需要签署我们的安装程序和卸载程序。这是按照 http://nsis.sourceforge.net/Signing_an_Uninstaller 中的建议完成的,但我刚刚意识到它试图运行 tempinstaller 以强制它生成 uninstaller.exe,然后可以对其进行签名。 [...] 这个技巧在 *Nix 系统上效果不佳,并使这部分过程不可移植。
如果您利用存根安装程序进行卸载操作(无负载),这似乎是可能的。
它将从
uninstall.exe
文件夹中产生一个$TEMP
进程,然后能够删除$INSTDIR
。
此脚本将创建一个存根(un)安装程序,然后可以对其进行 Authenticode 签名。它将在 Windows、MacOS 和 Linux 上编译。
$INSTDIR
,第二次来自$TEMP
)。这是一个子进程,它允许 uninstall.exe
删除自身,类似于 NSIS 在 Section "Uninstall"
..nsi
脚本,专门用于卸载操作,如果您在安装/卸载部分之间有很多共享逻辑,这会很麻烦。
"Uninstall"
部分标题,因为当生成该字节码时,您将陷入与 OP 相同的问题。$TEMP
显式运行时,一些相关文件逻辑将不正确。该示例分别将它们作为 $DELETE_DIR
、$DELETE_EXE
传回。!include MUI2.nsh
!include x64.nsh
!include LogicLib.nsh
!include FileFunc.nsh
!include WinMessages.nsh
!define MUI_PRODUCT "My App"
!define MUI_VERSION "1.0.0"
; Masquerade the title
!define MUI_PAGE_HEADER_TEXT "Uninstall My App"
!define MUI_PAGE_HEADER_SUBTEXT "Remove My App from your computer"
!define MUI_INSTFILESPAGE_FINISHHEADER_TEXT "Uninstallation Complete"
!define MUI_INSTFILESPAGE_FINISHHEADER_SUBTEXT "Uninstall was completed successfully."
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_LANGUAGE "English"
!insertmacro GetParameters
RequestExecutionLevel admin
CRCCheck On
OutFile "uninstall.exe"
Name "Uninstall"
Var /GLOBAL RESPAWN
Var /GLOBAL DELETE_DIR
Var /GLOBAL DELETE_EXE
Section
; Masquerade as uninstall
SendMessage $HWNDPARENT ${WM_SETTEXT} 0 "STR:Uninstall"
${GetParameters} $0
${GetOptions} "$0" "/RESPAWN=" $RESPAWN
${GetOptions} "$0" "/DELETE_DIR=" $DELETE_DIR
${GetOptions} "$0" "/DELETE_EXE=" $DELETE_EXE
${If} $RESPAWN != ""
; We're running from $TEMP; Perform the uninstall
!define yay "We're running from $EXEPATH, yay, we can remove the install directory!$\n$\n"
!define myvars "$\tRESPAWN$\t$RESPAWN$\n$\tDELETE_EXE$\t$DELETE_EXE$\n$\tDELETE_DIR$\t$DELETE_DIR"
MessageBox MB_OK "${yay}${myvars}"
; Your uninstall code goes here
; RMDir /r $DELETE_DIR\*.*
; Delete "$DESKTOP\${MUI_PRODUCT}.lnk"
; Delete "$SMPROGRAMS\${MUI_PRODUCT}\*.*"
; RmDir "$SMPROGRAMS\${MUI_PRODUCT}"
; Delete Uninstaller And Unistall Registry Entries
; DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\${MUI_PRODUCT}"
; DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\${MUI_PRODUCT}"
; Remove the old version of ourself
ClearErrors
Delete $DELETE_EXE
IfErrors 0 +3
MessageBox MB_OK "File could NOT be deleted: $DELETE_EXE"
Goto +2
MessageBox MB_OK "File was successfully deleted: $DELETE_EXE"
; Remove ourself from $TEMP after reboot
Delete /REBOOTOK $EXEPATH
; ${If} ${RunningX64}
; ${EnableX64FSRedirection}
; ${EndIf}
SetDetailsPrint textonly
DetailPrint "Completed"
${Else}
; We're NOT running from $TEMP, copy to temp and respawn ourself
GetTempFileName $0
CopyFiles "$EXEPATH" "$0"
Exec '"$0" /RESPAWN=1 /DELETE_DIR="$EXEDIR" /DELETE_EXE="$EXEPATH"'
Quit
${EndIf}
SectionEnd
Function .onInit
; ${If} ${RunningX64}
; SetRegView 64
; ${DisableX64FSRedirection}
; ${EndIf}
FunctionEnd
在NSIS wiki页面的过程中,需要运行安装程序来提取生成的卸载程序。
但是还有其他Linux/macOS工具也可以从安装程序exe中提取生成的卸载程序,例如7-Zip。