2021-01-09 17:30:27 -08:00
|
|
|
;
|
2021-01-13 16:01:08 -05:00
|
|
|
; Copyright (c) 2021 Alex Spataru <alex-spataru.com>
|
2021-01-09 17:30:27 -08:00
|
|
|
;
|
|
|
|
; This program is free software; you can redistribute it and/or modify
|
|
|
|
; it under the terms of the GNU General Public License as published by
|
|
|
|
; the Free Software Foundation; either version 3 of the License, or
|
|
|
|
; (at your option) any later version.
|
|
|
|
;
|
|
|
|
; This program is distributed in the hope that it will be useful,
|
|
|
|
; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
; GNU General Public License for more details.
|
|
|
|
;
|
|
|
|
; You should have received a copy of the GNU General Public License
|
|
|
|
; along with this program; if not, write to the Free Software
|
|
|
|
; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301
|
|
|
|
; USA
|
|
|
|
;
|
|
|
|
|
2021-01-09 17:34:23 -08:00
|
|
|
Unicode True
|
|
|
|
|
2021-01-09 17:30:27 -08:00
|
|
|
!include "MUI2.nsh"
|
2021-01-13 20:22:59 -05:00
|
|
|
!include "FileFunc.nsh"
|
2021-01-09 17:30:27 -08:00
|
|
|
!include "LogicLib.nsh"
|
|
|
|
|
2021-01-13 14:38:12 -05:00
|
|
|
!define APPNAME "Serial Studio"
|
2021-01-13 16:01:08 -05:00
|
|
|
!define EXECNAME "SerialStudio"
|
2021-01-09 17:30:27 -08:00
|
|
|
!define COMPANYNAME "Alex Spataru"
|
2021-01-13 14:38:12 -05:00
|
|
|
!define DESCRIPTION "Dashboard software for serial port devices"
|
2021-01-09 17:30:27 -08:00
|
|
|
!define VERSIONMAJOR 1
|
|
|
|
!define VERSIONMINOR 0
|
2021-01-13 14:38:12 -05:00
|
|
|
!define VERSIONBUILD 6
|
2021-01-09 17:30:27 -08:00
|
|
|
!define MUI_ABORTWARNING
|
|
|
|
!define INSTALL_DIR "$PROGRAMFILES64\${APPNAME}"
|
|
|
|
!define MUI_FINISHPAGE_RUN
|
|
|
|
!define MUI_FINISHPAGE_RUN_TEXT "Run ${APPNAME}"
|
|
|
|
!define MUI_FINISHPAGE_RUN_FUNCTION "RunApplication"
|
|
|
|
!define MUI_FINISHPAGE_LINK "Visit project website"
|
|
|
|
!define MUI_FINISHPAGE_LINK_LOCATION "http://github.com/serial-studio/serial-studio"
|
2021-01-13 14:38:12 -05:00
|
|
|
!define MUI_WELCOMEPAGE_TITLE "Welcome to the ${APPNAME} installer!"
|
2021-01-09 17:30:27 -08:00
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
|
|
!insertmacro MUI_PAGE_FINISH
|
|
|
|
!insertmacro MUI_UNPAGE_WELCOME
|
|
|
|
!insertmacro MUI_UNPAGE_CONFIRM
|
|
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
|
|
|
|
!macro VerifyUserIsAdmin
|
|
|
|
UserInfo::GetAccountType
|
|
|
|
pop $0
|
|
|
|
${If} $0 != "admin"
|
|
|
|
messageBox mb_iconstop "Administrator rights required!"
|
|
|
|
setErrorLevel 740
|
|
|
|
quit
|
|
|
|
${EndIf}
|
|
|
|
!macroend
|
|
|
|
|
|
|
|
Name "${APPNAME}"
|
|
|
|
ManifestDPIAware true
|
|
|
|
InstallDir "${INSTALL_DIR}"
|
|
|
|
RequestExecutionLevel admin
|
2021-01-13 16:01:08 -05:00
|
|
|
OutFile "${EXECNAME}-${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONBUILD}-Windows.exe"
|
2021-01-13 21:29:49 -05:00
|
|
|
|
2021-01-09 17:30:27 -08:00
|
|
|
Function .onInit
|
|
|
|
setShellVarContext all
|
|
|
|
!insertmacro VerifyUserIsAdmin
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Section "${APPNAME} (required)" SecDummy
|
|
|
|
SectionIn RO
|
|
|
|
SetOutPath "${INSTALL_DIR}"
|
|
|
|
File /r "${APPNAME}\*"
|
2021-01-13 22:48:43 -05:00
|
|
|
|
|
|
|
${GetSize} "$INSTDIR" "/S=0K" $0 $1 $2
|
|
|
|
IntFmt $0 "0x%08X" $0
|
|
|
|
|
2021-01-09 17:30:27 -08:00
|
|
|
DeleteRegKey HKCU "Software\${COMPANYNAME}\${APPNAME}"
|
|
|
|
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}"
|
|
|
|
|
|
|
|
WriteUninstaller "${INSTALL_DIR}\uninstall.exe"
|
2021-01-13 22:48:43 -05:00
|
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}" "DisplayName" "${APPNAME}"
|
|
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}" "UninstallString" "${INSTALL_DIR}\uninstall.exe"
|
|
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}" "InstallLocation" "${INSTALL_DIR}"
|
|
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}" "Publisher" "${COMPANYNAME}"
|
|
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}" "DisplayIcon" "${INSTALL_DIR}\icon.ico"
|
2021-01-09 17:30:27 -08:00
|
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}" "DisplayVersion" ${VERSIONMAJOR}.${VERSIONMINOR}${VERSIONBUILD}
|
|
|
|
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}" "VersionMajor" ${VERSIONMAJOR}
|
|
|
|
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}" "VersionMinor" ${VERSIONMINOR}
|
|
|
|
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}" "NoModify" 1
|
2021-01-13 21:09:16 -05:00
|
|
|
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}" "NoRepair" 1
|
2021-01-13 22:48:43 -05:00
|
|
|
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}" "EstimatedSize" "$0"
|
2021-01-09 17:30:27 -08:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "Start Menu Shortcuts"
|
2021-01-13 16:01:08 -05:00
|
|
|
CreateShortCut "$SMPROGRAMS\${APPNAME}.lnk" "${INSTALL_DIR}\bin\${EXECNAME}.exe" "" "${INSTALL_DIR}\bin\${EXECNAME}.exe" 0
|
2021-01-09 17:30:27 -08:00
|
|
|
SectionEnd
|
|
|
|
|
2021-01-13 22:48:43 -05:00
|
|
|
Section "Install Visual C++ Redistributable"
|
|
|
|
ExecWait "${INSTALL_DIR}\bin\vc_redist.x64.exe /quiet"
|
|
|
|
Delete "${INSTALL_DIR}\bin\vc_redist.x64.exe"
|
|
|
|
SectionEnd
|
|
|
|
|
2021-01-09 17:30:27 -08:00
|
|
|
Function RunApplication
|
2021-01-13 16:01:08 -05:00
|
|
|
ExecShell "" "${INSTALL_DIR}\bin\${EXECNAME}.exe"
|
2021-01-09 17:30:27 -08:00
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function un.onInit
|
|
|
|
SetShellVarContext all
|
|
|
|
MessageBox MB_OKCANCEL|MB_ICONQUESTION "Are you sure that you want to uninstall ${APPNAME}?" IDOK next
|
|
|
|
Abort
|
|
|
|
next:
|
|
|
|
!insertmacro VerifyUserIsAdmin
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Section "Uninstall"
|
|
|
|
RMDir /r "${INSTALL_DIR}"
|
|
|
|
RMDir /r "$SMPROGRAMS\${APPNAME}.lnk"
|
|
|
|
DeleteRegKey HKCU "Software\${COMPANYNAME}\${APPNAME}"
|
|
|
|
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}"
|
2021-01-13 14:38:12 -05:00
|
|
|
SectionEnd
|