mirror of
https://github.com/Mahdi-zarei/nekoray.git
synced 2025-12-18 20:50:09 +08:00
76 lines
2.3 KiB
Plaintext
76 lines
2.3 KiB
Plaintext
Name "Throne"
|
|
OutFile "ThroneSetup.exe"
|
|
InstallDir $APPDATA\Throne
|
|
RequestExecutionLevel user
|
|
|
|
!include MUI2.nsh
|
|
!define MUI_ICON "res\Throne.ico"
|
|
!define MUI_ABORTWARNING
|
|
!define MUI_WELCOMEPAGE_TITLE "Welcome to Throne Installer"
|
|
!define MUI_WELCOMEPAGE_TEXT "This wizard will guide you through the installation of Throne."
|
|
!define MUI_FINISHPAGE_RUN "$INSTDIR\Throne.exe"
|
|
!define MUI_FINISHPAGE_RUN_TEXT "Launch Throne"
|
|
!addplugindir .\script\
|
|
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
!insertmacro MUI_PAGE_FINISH
|
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
UninstallText "This will uninstall Throne. Do you wish to continue?"
|
|
UninstallIcon "res\ThroneDel.ico"
|
|
|
|
Function .onInit
|
|
ReadRegStr $R0 HKCU "Software\Throne" "InstallPath"
|
|
StrCmp $R0 "" +2
|
|
StrCpy $INSTDIR $R0
|
|
FunctionEnd
|
|
|
|
!macro AbortOnRunningApp EXEName
|
|
killModule:
|
|
FindProcDLL::FindProc ${EXEName}
|
|
Pop $R0
|
|
IntCmp $R0 1 0 notRunning
|
|
FindProcDLL::KillProc ${EXEName}
|
|
Sleep 1000
|
|
Goto killModule
|
|
notRunning:
|
|
!macroend
|
|
|
|
Section "Install"
|
|
SetOutPath "$INSTDIR"
|
|
SetOverwrite on
|
|
|
|
!insertmacro AbortOnRunningApp "$INSTDIR\Throne.exe"
|
|
|
|
File /r ".\deployment\windows64\*"
|
|
|
|
CreateShortcut "$desktop\Throne.lnk" "$instdir\Throne.exe"
|
|
CreateShortcut "$SMPROGRAMS\Throne.lnk" "$INSTDIR\Throne.exe" "" "$INSTDIR\Throne.exe" 0
|
|
|
|
WriteRegStr HKCU "Software\Throne" "InstallPath" "$INSTDIR"
|
|
|
|
WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\Throne" "DisplayName" "Throne"
|
|
WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\Throne" "UninstallString" "$INSTDIR\uninstall.exe"
|
|
WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\Throne" "InstallLocation" "$INSTDIR"
|
|
WriteRegDWORD HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\Throne" "NoModify" 1
|
|
WriteRegDWORD HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\Throne" "NoRepair" 1
|
|
WriteUninstaller "uninstall.exe"
|
|
SectionEnd
|
|
|
|
Section "Uninstall"
|
|
|
|
!insertmacro AbortOnRunningApp "$INSTDIR\Throne.exe"
|
|
|
|
Delete "$SMPROGRAMS\Throne.lnk"
|
|
Delete "$desktop\Throne.lnk"
|
|
RMDir "$SMPROGRAMS\Throne"
|
|
|
|
RMDir /r "$INSTDIR"
|
|
|
|
Delete "$INSTDIR\uninstall.exe"
|
|
|
|
DeleteRegKey HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\Throne"
|
|
SectionEnd |