mirror of
https://github.com/moparisthebest/davmail
synced 2024-10-31 15:35:05 -04:00
4080160040
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1410 3d1905a2-6b24-0410-a738-b14d5a86fcbd
198 lines
6.9 KiB
Plaintext
198 lines
6.9 KiB
Plaintext
; Script generated by the HM NIS Edit Script Wizard.
|
|
|
|
; HM NIS Edit Wizard helper defines
|
|
!define PRODUCT_NAME "DavMail"
|
|
!define PRODUCT_VERSION "${VERSION}"
|
|
!define PRODUCT_PUBLISHER "Mickaël Guessant"
|
|
!define PRODUCT_WEB_SITE "http://sourceforge.net/projects/davmail"
|
|
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\davmail.exe"
|
|
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
|
|
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
|
|
|
|
; MUI 1.67 compatible ------
|
|
!include "MUI.nsh"
|
|
|
|
; MUI Settings
|
|
!define MUI_ABORTWARNING
|
|
!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\modern-install.ico"
|
|
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"
|
|
|
|
; Language Selection Dialog Settings
|
|
!define MUI_LANGDLL_REGISTRY_ROOT "${PRODUCT_UNINST_ROOT_KEY}"
|
|
!define MUI_LANGDLL_REGISTRY_KEY "${PRODUCT_UNINST_KEY}"
|
|
!define MUI_LANGDLL_REGISTRY_VALUENAME "NSIS:Language"
|
|
|
|
; Welcome page
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
; License page
|
|
!insertmacro MUI_PAGE_LICENSE "src\license.txt"
|
|
; Directory page
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
; Instfiles page
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
; Finish page
|
|
!define MUI_FINISHPAGE_RUN "$INSTDIR\davmail.exe"
|
|
!insertmacro MUI_PAGE_FINISH
|
|
|
|
; Uninstaller pages
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
|
|
|
; Language files
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
!insertmacro MUI_LANGUAGE "French"
|
|
|
|
; MUI end ------
|
|
|
|
Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
|
|
OutFile "dist\davmail-${PRODUCT_VERSION}-setup.exe"
|
|
InstallDir "$PROGRAMFILES\DavMail"
|
|
InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" ""
|
|
ShowInstDetails show
|
|
ShowUnInstDetails show
|
|
|
|
Function .onInit
|
|
!insertmacro MUI_LANGDLL_DISPLAY
|
|
FunctionEnd
|
|
|
|
Section
|
|
Push $5
|
|
loop:
|
|
push "davmail.exe"
|
|
processwork::existsprocess
|
|
pop $5
|
|
IntCmp $5 0 no_quest
|
|
MessageBox MB_RETRYCANCEL|MB_ICONSTOP 'DavMail must be closed during this installation.$\r$\n Close DavMail now, or press "Retry" to automatically close DavMail and continue or press "Cancel" to cancel the installation entirely.' IDCANCEL BailOut
|
|
push "davmail.exe"
|
|
processwork::KillProcess
|
|
Sleep 2000
|
|
Goto loop
|
|
|
|
BailOut:
|
|
Abort
|
|
|
|
no_quest:
|
|
SectionEnd
|
|
|
|
Section "MainSection" SEC01
|
|
SetOutPath "$INSTDIR"
|
|
SetOverwrite try
|
|
File "dist\davmail.exe"
|
|
CreateDirectory "$SMPROGRAMS\DavMail"
|
|
CreateShortCut "$SMPROGRAMS\DavMail\DavMail.lnk" "$INSTDIR\davmail.exe"
|
|
CreateShortCut "$SMPROGRAMS\DavMail\DavMail Console.lnk" "$INSTDIR\davmailconsole.exe"
|
|
CreateShortCut "$DESKTOP\DavMail.lnk" "$INSTDIR\davmail.exe"
|
|
File "dist\davmail.jar"
|
|
File "dist\davmailconsole.exe"
|
|
File "dist\davmailservice.exe"
|
|
SetOutPath "$INSTDIR\lib"
|
|
File "dist\lib\activation-1.1.jar"
|
|
File "dist\lib\commons-codec-1.3.jar"
|
|
File "dist\lib\commons-collections-3.1.jar"
|
|
File "dist\lib\commons-httpclient-3.1.jar"
|
|
File "dist\lib\commons-logging-1.0.4.jar"
|
|
File "dist\lib\htmlcleaner-2.1.jar"
|
|
File "dist\lib\jackrabbit-webdav-1.4.jar"
|
|
File "dist\lib\jcifs-1.3.14.jar"
|
|
File "dist\lib\jdom-1.0.jar"
|
|
File "dist\lib\log4j-1.2.15.jar"
|
|
File "dist\lib\mail-1.4.1.jar"
|
|
File "dist\lib\slf4j-api-1.3.1.jar"
|
|
File "dist\lib\slf4j-log4j12-1.3.1.jar"
|
|
File "dist\lib\stax-api-1.0.1.jar"
|
|
File "dist\lib\swt-3.6-win32-x86.jar"
|
|
File "dist\lib\wstx-asl-3.2.7.jar"
|
|
File "dist\lib\xercesImpl-2.8.1.jar"
|
|
|
|
WriteRegStr HKEY_CURRENT_USER "Software\Microsoft\Windows\CurrentVersion\Run" "DavMail" "$INSTDIR\davmail.exe"
|
|
SectionEnd
|
|
|
|
Section -AdditionalIcons
|
|
SetOutPath $INSTDIR
|
|
WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}"
|
|
CreateShortCut "$SMPROGRAMS\DavMail\Website.lnk" "$INSTDIR\${PRODUCT_NAME}.url"
|
|
CreateShortCut "$SMPROGRAMS\DavMail\Uninstall.lnk" "$INSTDIR\uninst.exe"
|
|
SectionEnd
|
|
|
|
Section -Post
|
|
WriteUninstaller "$INSTDIR\uninst.exe"
|
|
WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\davmail.exe"
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)"
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe"
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\davmail.exe"
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}"
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}"
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}"
|
|
SectionEnd
|
|
|
|
|
|
Function un.onUninstSuccess
|
|
HideWindow
|
|
MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) has been removed from your system."
|
|
FunctionEnd
|
|
|
|
Function un.onInit
|
|
!insertmacro MUI_UNGETLANGUAGE
|
|
MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" IDYES +2
|
|
Abort
|
|
FunctionEnd
|
|
|
|
Section Uninstall
|
|
Push $5
|
|
loop:
|
|
push "davmail.exe"
|
|
processwork::existsprocess
|
|
pop $5
|
|
IntCmp $5 0 no_quest
|
|
MessageBox MB_RETRYCANCEL|MB_ICONSTOP 'DavMail must be closed during this installation.$\r$\n Close DavMail now, or press "Retry" to automatically close DavMail and continue or press "Cancel" to cancel the installation entirely.' IDCANCEL BailOut
|
|
push "davmail.exe"
|
|
processwork::KillProcess
|
|
Sleep 2000
|
|
Goto loop
|
|
|
|
BailOut:
|
|
Abort
|
|
|
|
no_quest:
|
|
Delete "$INSTDIR\${PRODUCT_NAME}.url"
|
|
Delete "$INSTDIR\uninst.exe"
|
|
|
|
Delete "$INSTDIR\lib\activation-1.1.jar"
|
|
Delete "$INSTDIR\lib\commons-codec-1.3.jar"
|
|
Delete "$INSTDIR\lib\commons-collections-3.1.jar"
|
|
Delete "$INSTDIR\lib\commons-httpclient-3.1.jar"
|
|
Delete "$INSTDIR\lib\commons-logging-1.0.4.jar"
|
|
Delete "$INSTDIR\lib\htmlcleaner-2.1.jar"
|
|
Delete "$INSTDIR\lib\jackrabbit-webdav-1.4.jar"
|
|
Delete "$INSTDIR\lib\jcifs-1.3.14.jar"
|
|
Delete "$INSTDIR\lib\jdom-1.0.jar"
|
|
Delete "$INSTDIR\lib\log4j-1.2.15.jar"
|
|
Delete "$INSTDIR\lib\mail-1.4.1.jar"
|
|
Delete "$INSTDIR\lib\slf4j-api-1.3.1.jar"
|
|
Delete "$INSTDIR\lib\slf4j-log4j12-1.3.1.jar"
|
|
Delete "$INSTDIR\lib\stax-api-1.0.1.jar"
|
|
Delete "$INSTDIR\lib\swt-3.6-win32-x86.jar"
|
|
Delete "$INSTDIR\lib\wstx-asl-3.2.7.jar"
|
|
Delete "$INSTDIR\lib\xercesImpl-2.8.1.jar"
|
|
|
|
Delete "$INSTDIR\davmailservice.exe"
|
|
Delete "$INSTDIR\davmailconsole.exe"
|
|
Delete "$INSTDIR\davmail.log"
|
|
Delete "$INSTDIR\davmail.jar"
|
|
Delete "$INSTDIR\davmail.exe"
|
|
|
|
Delete "$SMPROGRAMS\DavMail\Uninstall.lnk"
|
|
Delete "$SMPROGRAMS\DavMail\Website.lnk"
|
|
Delete "$DESKTOP\DavMail.lnk"
|
|
Delete "$SMPROGRAMS\DavMail\DavMail.lnk"
|
|
Delete "$SMPROGRAMS\DavMail\DavMail Console.lnk"
|
|
|
|
RMDir "$SMPROGRAMS\DavMail"
|
|
RMDir "$INSTDIR\lib"
|
|
RMDir "$INSTDIR"
|
|
|
|
DeleteRegValue HKCU "Software\Microsoft\Windows\CurrentVersion\Run" "DavMail"
|
|
|
|
DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
|
|
DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}"
|
|
SetAutoClose true
|
|
SectionEnd |