2025-02-01 15:16:53 +08:00
|
|
|
!include "MUI2.nsh"
|
2024-01-21 02:44:00 +08:00
|
|
|
!define EPT "EverythingPT"
|
2025-02-01 15:16:53 +08:00
|
|
|
!define SMWCUE "Software\Microsoft\Windows\CurrentVersion\Uninstall\EverythingPowerToys"
|
|
|
|
;--------------------------------
|
|
|
|
;General
|
|
|
|
Name "${EPT}"
|
|
|
|
BrandingText "v${ver} ${platform}"
|
|
|
|
SetCompressor zlib
|
|
|
|
OutFile ".\..\bin\${EPT}-${ver}-${platform}.exe"
|
|
|
|
Unicode True
|
|
|
|
RequestExecutionLevel user
|
|
|
|
SetOverwrite ifnewer
|
|
|
|
InstallDir "$LOCALAPPDATA\Microsoft\PowerToys\PowerToys Run\Plugins\Everything"
|
|
|
|
FileErrorText "Can't access: $\r$\n$\r$\n$0$\r$\n$\r$\nPowerToys is probably still running, please close it and retry."
|
|
|
|
;--------------------------------
|
|
|
|
;Interface Settings
|
|
|
|
!define MUI_ICON "Everything.ico"
|
|
|
|
!define MUI_ABORTWARNING
|
|
|
|
;--------------------------------
|
|
|
|
;Pages
|
|
|
|
!insertmacro MUI_PAGE_LICENSE "..\LICENSE"
|
|
|
|
!insertmacro MUI_PAGE_INSTFILES
|
2024-01-21 02:44:00 +08:00
|
|
|
|
2025-02-01 15:16:53 +08:00
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
2024-01-21 02:44:00 +08:00
|
|
|
;--------------------------------
|
|
|
|
;Version Information
|
|
|
|
VIProductVersion "${ver}.0"
|
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductName" "${EPT} Setup"
|
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "CompanyName" "lin-ycv"
|
2024-01-31 21:25:35 +08:00
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalCopyright" "lin-ycv"
|
2024-01-21 02:44:00 +08:00
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "FileDescription" "Everything search plugin for PowerToys Run"
|
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "${ver}"
|
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductVersion" "${ver}"
|
|
|
|
;--------------------------------
|
|
|
|
Section ""
|
|
|
|
SetOutPath $INSTDIR
|
2024-04-18 17:04:25 +08:00
|
|
|
File /r "${direct}\*"
|
2024-01-21 02:44:00 +08:00
|
|
|
|
2025-02-01 15:16:53 +08:00
|
|
|
WriteRegStr HKCU "${SMWCUE}" "DisplayName" "${EPT} (${platform})"
|
|
|
|
WriteRegStr HKCU "${SMWCUE}" "DisplayVersion" "${ver}"
|
|
|
|
WriteRegStr HKCU "${SMWCUE}" "InstallLocation" "$INSTDIR"
|
|
|
|
WriteRegStr HKCU "${SMWCUE}" "Publisher" "Lin-ycv"
|
|
|
|
|
2024-04-19 15:37:15 +08:00
|
|
|
IfErrors 0 +5
|
2024-07-20 19:27:04 +08:00
|
|
|
SetErrorlevel 1
|
2024-04-19 15:37:15 +08:00
|
|
|
IfSilent +2
|
2025-02-01 15:16:53 +08:00
|
|
|
MessageBox MB_ICONEXCLAMATION "Unable to install, PowerToys is probably still running, please close it manually before install."
|
2024-04-19 15:37:15 +08:00
|
|
|
Abort
|
2024-01-21 02:44:00 +08:00
|
|
|
|
2025-02-01 15:16:53 +08:00
|
|
|
SetErrorlevel 0
|
2024-04-19 15:37:15 +08:00
|
|
|
SectionEnd
|