2007-02-08 21:09:30 +00:00
|
|
|
/*
|
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
uninstall.nsh
|
|
|
|
|
|
|
|
Uninstall
|
2007-02-08 21:09:30 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
Var FileAssociation
|
2007-02-08 21:09:30 +00:00
|
|
|
|
|
|
|
Section "un.Program Files" un.SecProgramFiles
|
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
# Binaries
|
2007-02-08 21:09:30 +00:00
|
|
|
|
|
|
|
Delete "$INSTDIR\bin\lyx.exe"
|
|
|
|
Delete "$INSTDIR\bin\lyxc.exe"
|
|
|
|
!insertmacro FileListLyXBin Delete "$INSTDIR\bin\"
|
|
|
|
!insertmacro FileListQtBin Delete "$INSTDIR\bin\"
|
|
|
|
|
|
|
|
!insertmacro FileListDllMSVCBin Delete "$INSTDIR\bin\"
|
|
|
|
!insertmacro FileListMSVCBin Delete "$INSTDIR\bin\"
|
|
|
|
!insertmacro FileListMSVCManifest Delete "$INSTDIR\bin\"
|
|
|
|
|
|
|
|
!insertmacro FileListNetpbmBin Delete "$INSTDIR\bin\"
|
|
|
|
!insertmacro FileListDTLBin Delete "$INSTDIR\bin\"
|
|
|
|
!insertmacro FileListPDFToolsBin Delete "$INSTDIR\bin\"
|
|
|
|
!insertmacro FileListPDFViewBin Delete "$INSTDIR\bin\"
|
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
# Resources
|
2007-02-08 21:09:30 +00:00
|
|
|
|
|
|
|
RMDir /r "$INSTDIR\Resources"
|
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
# Components of Python
|
2007-02-08 21:09:30 +00:00
|
|
|
|
|
|
|
RMDir /r "$INSTDIR\python"
|
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
# Aiksaurus Data
|
2007-02-08 21:09:30 +00:00
|
|
|
|
|
|
|
!insertmacro FileListAiksaurusData Delete "$INSTDIR\aiksaurus\"
|
|
|
|
RMDir "$INSTDIR\aiksaurus"
|
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
# Helper DLLs for NSIS-based tools
|
2007-02-08 21:09:30 +00:00
|
|
|
|
|
|
|
!insertmacro FileListNSISPluginsStandard Delete "$INSTDIR\bin\"
|
2008-04-05 19:12:37 +00:00
|
|
|
!insertmacro FileListNSISPlugins Delete "$INSTDIR\bin\"
|
|
|
|
|
|
|
|
# Metafile to EPS Converter
|
|
|
|
!insertmacro FileListMetaFile2EPS Delete "$INSTDIR\bin\"
|
|
|
|
|
|
|
|
# Postscript printer for metafile to EPS converter
|
|
|
|
!insertmacro FileListPSPrinter Delete "$INSTDIR\PSPrinter\"
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
# Shortcuts
|
2007-02-08 21:09:30 +00:00
|
|
|
|
|
|
|
Delete "$SMPROGRAMS\${APP_NAME} ${APP_SERIES_NAME}.lnk"
|
|
|
|
Delete "$DESKTOP\${APP_NAME} ${APP_SERIES_NAME}.lnk"
|
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
# Uninstaller itself
|
2007-02-08 21:09:30 +00:00
|
|
|
|
|
|
|
Delete "$INSTDIR\${SETUP_UNINSTALLER}"
|
|
|
|
RMDir "$INSTDIR\bin"
|
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
# Application folder
|
2007-02-08 21:09:30 +00:00
|
|
|
|
|
|
|
SetOutPath "$PROGRAMFILES"
|
|
|
|
RMDir "$INSTDIR"
|
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
# Registry keys
|
2007-02-08 21:09:30 +00:00
|
|
|
|
|
|
|
DeleteRegKey SHELL_CONTEXT "${APP_REGKEY_SETUP}"
|
|
|
|
DeleteRegKey SHELL_CONTEXT "${APP_REGKEY}"
|
|
|
|
DeleteRegKey SHELL_CONTEXT "Software\Classes\${APP_REGNAME_DOC}"
|
|
|
|
DeleteRegKey SHELL_CONTEXT "Software\Microsoft\Windows\CurrentVersion\Uninstall\${SETUP_UNINSTALLER_KEY}"
|
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
# File associations
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
ReadRegStr $FileAssociation SHELL_CONTEXT "Software\Classes\${APP_EXT}" ""
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
${If} $FileAssociation == "${APP_REGNAME_DOC}"
|
2007-02-08 21:09:30 +00:00
|
|
|
DeleteRegKey SHELL_CONTEXT "Software\Classes\${APP_EXT}"
|
2008-03-30 21:37:53 +00:00
|
|
|
${EndIf}
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-04-05 19:12:37 +00:00
|
|
|
${If} $MultiUser.Privileges != "Admin"
|
|
|
|
${OrIf} $MultiUser.Privileges != "Power"
|
|
|
|
|
|
|
|
# Delete Postscript printer for metafile o EPS conversion
|
|
|
|
ExecWait '$PrinterConf /q /dl /n "Metafile to EPS Converter"'
|
|
|
|
|
|
|
|
# Also delete printer driver
|
|
|
|
ExecWait '$PrinterConf /q /dd /m "Metafile to EPS Converter"'
|
|
|
|
|
|
|
|
${EndIf}
|
|
|
|
|
2007-02-08 21:09:30 +00:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "un.User Preferences and Custom Files" un.SecUserFiles
|
|
|
|
|
|
|
|
SetShellVarContext current
|
|
|
|
RMDir /r "$APPDATA\${APP_DIR_USERDATA}"
|
|
|
|
|
|
|
|
SectionEnd
|