aboutsummaryrefslogtreecommitdiff
path: root/BuildTools/7-ZipPortable_22.01/Other/Source/PortableApps.comInstallerCustom.nsh
blob: 297976f9b6bb51bc84da730f97767d0f892f676a (plain) (blame)
1
2
3
4
5
6
7
8
!macro CustomCodePreInstall
	IfFileExists "$INSTDIR\Data\settings\7zip_portable.reg" "" CustomCodePreInstallEnd
		ReadINIStr $0 "$INSTDIR\Data\settings\7zip_portable.reg" "HKEY_CURRENT_USER\Software\7-zip\FM" '"FolderShortcuts"'
		StrCmp $0 "" "" CustomCodePreInstallEnd
			RMDir /r "$INSTDIR\Data"

	CustomCodePreInstallEnd:
!macroend