EverythingPowerToys/NSIS/exeCreator.nsi

51 lines
1.9 KiB
NSIS
Raw Normal View History

2025-02-01 15:16:53 +08:00
!include "MUI2.nsh"
!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
2025-02-01 15:16:53 +08:00
!insertmacro MUI_LANGUAGE "English"
;--------------------------------
;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"
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}\*"
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"
IfErrors 0 +5
SetErrorlevel 1
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."
Abort
2025-02-01 15:16:53 +08:00
SetErrorlevel 0
SectionEnd