mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-29 04:14:52 +03:00
186 lines
5.8 KiB
Plaintext
186 lines
5.8 KiB
Plaintext
!include "MUI2.nsh"
|
|
!include "nsProcess.nsh"
|
|
|
|
!define MUI_ICON "../../resources/icons/com.yubico.yubioath.ico"
|
|
|
|
;Start Menu Folder Page Configuration
|
|
!define MUI_STARTMENUPAGE_DEFAULTFOLDER "Yubico\Yubico Authenticator"
|
|
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKCU"
|
|
!define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\Yubico\Yubico Authenticator"
|
|
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
|
|
!define MUI_ABORTWARNING
|
|
|
|
;Checkbox on finish page, "Run Yubico Authenticator"
|
|
!define MUI_FINISHPAGE_RUN "$INSTDIR\yubioath-desktop.exe"
|
|
|
|
;Support High DPI displays.
|
|
ManifestDPIAware true
|
|
|
|
Var STARTMENU_FOLDER
|
|
|
|
!ifdef INNER
|
|
!echo "Inner invocation"
|
|
OutFile "$%TEMP%\tempinstaller.exe"
|
|
SetCompress off
|
|
!else
|
|
!echo "Outer invocation"
|
|
|
|
; Call makensis again, defining INNER. This writes an installer for us which, when
|
|
; it is invoked, will just write the uninstaller to some location, and then exit.
|
|
!system "$\"${NSISDIR}\makensis$\" /DINNER win-installer.nsi" = 0
|
|
|
|
; Run temp installer. Since it calls quit the return value isn't zero.
|
|
!system "$%TEMP%\tempinstaller.exe" = 2
|
|
|
|
; Sign real uninstaller.
|
|
!system "signtool.exe sign /fd SHA256 /t http://timestamp.verisign.com/scripts/timstamp.dll $%TEMP%\yubioath-desktop-uninstall.exe" = 0
|
|
|
|
; The name of the installer
|
|
Name "Yubico Authenticator"
|
|
|
|
; The file to write
|
|
OutFile "../../yubioath-desktop-${VERSION}-win32.exe"
|
|
|
|
; The default installation directory
|
|
InstallDir "$PROGRAMFILES\Yubico\Yubico Authenticator"
|
|
|
|
; Registry key to check for directory (so if you install again, it will
|
|
; overwrite the old one automatically)
|
|
InstallDirRegKey HKLM "Software\Yubico\yubioath-desktop" "Install_Dir"
|
|
|
|
SetCompressor /SOLID lzma
|
|
|
|
ShowInstDetails show
|
|
|
|
;Interface Settings
|
|
|
|
; Pages
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
!insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
!insertmacro MUI_PAGE_FINISH
|
|
!insertmacro MUI_UNPAGE_CONFIRM
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
|
|
|
;Languages
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
Section "Start Menu"
|
|
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
|
|
;Create shortcuts
|
|
SetShellVarContext all
|
|
SetOutPath "$SMPROGRAMS\$STARTMENU_FOLDER"
|
|
CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER"
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Yubico Authenticator.lnk" "$INSTDIR\yubioath-desktop.exe"
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Uninstall Yubico Authenticator.lnk" "$INSTDIR\yubioath-desktop-uninstall.exe"
|
|
!insertmacro MUI_STARTMENU_WRITE_END
|
|
SectionEnd
|
|
|
|
Section "Kill process" KillProcess
|
|
${nsProcess::FindProcess} "yubioath-desktop.exe" $R0
|
|
${If} $R0 == 0
|
|
DetailPrint "Yubico Authenticator is running. Closing..."
|
|
${nsProcess::CloseProcess} "yubioath-desktop.exe" $R0
|
|
Sleep 2000
|
|
${EndIf}
|
|
${nsProcess::Unload}
|
|
SectionEnd
|
|
!endif
|
|
|
|
Function .onInit
|
|
!ifdef INNER
|
|
WriteUninstaller "$%TEMP%\yubioath-desktop-uninstall.exe"
|
|
Quit
|
|
!endif
|
|
FunctionEnd
|
|
|
|
Var MYTMP
|
|
Section "Yubico Authenticator"
|
|
SectionIn RO
|
|
|
|
; Delete any old installation
|
|
RMDir /r $INSTDIR
|
|
|
|
SetOutPath $INSTDIR
|
|
FILE /r "..\..\release\*"
|
|
|
|
; Write the installation path into the registry
|
|
WriteRegStr HKLM "Software\Yubico\yubioath-desktop" "Install_Dir" "$INSTDIR"
|
|
|
|
; Windows Add/Remove Programs support
|
|
StrCpy $MYTMP "Software\Microsoft\Windows\CurrentVersion\Uninstall\yubioath-desktop"
|
|
WriteRegStr HKLM $MYTMP "DisplayName" "Yubico Authenticator"
|
|
WriteRegExpandStr HKLM $MYTMP "UninstallString" '"$INSTDIR\yubioath-desktop-uninstall.exe"'
|
|
WriteRegExpandStr HKLM $MYTMP "InstallLocation" "$INSTDIR"
|
|
WriteRegStr HKLM $MYTMP "DisplayVersion" "${VERSION}"
|
|
WriteRegStr HKLM $MYTMP "Publisher" "Yubico AB"
|
|
WriteRegStr HKLM $MYTMP "URLInfoAbout" "https://www.yubico.com"
|
|
WriteRegDWORD HKLM $MYTMP "NoModify" "1"
|
|
WriteRegDWORD HKLM $MYTMP "NoRepair" "1"
|
|
|
|
; Install Visual C++ Redistributable Packages
|
|
; will do nothing if already installed
|
|
ExecWait "$INSTDIR\vc_redist.x86.exe /q /norestart"
|
|
; Delete redist packages
|
|
Delete "$INSTDIR\vc_redist.x86.exe"
|
|
|
|
SectionEnd
|
|
|
|
|
|
Section
|
|
!ifndef INNER
|
|
SetOutPath $INSTDIR
|
|
File $%TEMP%\yubioath-desktop-uninstall.exe
|
|
!endif
|
|
SectionEnd
|
|
|
|
!ifdef INNER
|
|
!insertmacro MUI_UNPAGE_CONFIRM
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
|
!endif
|
|
|
|
!ifdef INNER
|
|
Var MUI_TEMP
|
|
!insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER
|
|
Name "Yubico Authenticator"
|
|
|
|
Section "Uninstall"
|
|
; Remove registry keys
|
|
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\yubioath-desktop"
|
|
DeleteRegKey HKLM "Software\Yubico\yubioath-desktop"
|
|
|
|
; Kill processes
|
|
${nsProcess::FindProcess} "yubioath-desktop.exe" $R0
|
|
${If} $R0 == 0
|
|
DetailPrint "Yubico Authenticator is running. Closing..."
|
|
${nsProcess::CloseProcess} "yubioath-desktop.exe" $R0
|
|
Sleep 2000
|
|
${EndIf}
|
|
${nsProcess::Unload}
|
|
|
|
; Remove the installation directory recursively
|
|
; NOTE! This behaviour assumes installation directory is hardcoded.
|
|
RMDir /r "$INSTDIR"
|
|
|
|
; Remove shortcuts, if any
|
|
!insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_TEMP
|
|
SetShellVarContext all
|
|
Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall Yubico Authenticator.lnk"
|
|
Delete "$SMPROGRAMS\$MUI_TEMP\Yubico Authenticator.lnk"
|
|
|
|
;Delete empty start menu parent directories
|
|
StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP"
|
|
|
|
startMenuDeleteLoop:
|
|
ClearErrors
|
|
RMDir $MUI_TEMP
|
|
GetFullPathName $MUI_TEMP "$MUI_TEMP\.."
|
|
IfErrors startMenuDeleteLoopDone
|
|
StrCmp $MUI_TEMP $SMPROGRAMS startMenuDeleteLoopDone startMenuDeleteLoop
|
|
startMenuDeleteLoopDone:
|
|
|
|
DeleteRegKey /ifempty HKCU "Software\Yubico\yubioath-desktop"
|
|
SectionEnd
|
|
!endif
|