if a File Exist on the install System.
Here is a Sample bit of Code to Show me With....
;--------------------------------
;--------------------------------
; Uninstaller Pages
;--------------------------------
!insertmacro MUI_UNPAGE_COMPONENTS
!insertmacro MUI_UNPAGE_INSTFILES
or Non MUI
UninstPage components
UninstPage instfiles
;--------------------------------
;--------------------------------
; Uninstaller
;--------------------------------
Section "-Un.UninstallHiddenRequiredFiles"
Delete "$INSTDIR\Uninst.exe"
Delete "$Desktop\Uninstaller.lnk"
SectionEnd
Section "Un.Compoment1"
#MYCODE
SectionEnd
Section "Un.Compoment2"
#MYCODE
SectionEnd
Section "Un.Compoment3"
#MYCODE
SectionEnd
I have a Component Page for Installation too. So If one of the Installation Sections was left off, What I want to do is Use the IfFileExists on a file that would have been installed. how do I incorporate that so a Component doesn't make the list to try and
uninstall?
That way Only What the User Installed Shows as an Option to Uninstall.
-MichaelFlya-