I am using following code...
OutFile 'InstTest.exe'Now I want to UNHIDE all the sections while selecting 'Custom' and if user selects 'Typical 'again I need to hide all the options...
InstType "Typical"
!include MUI.nsh
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_LANGUAGE "English"
Section "-Install Java SDK" SEC_1
SectionIn 1
;;;;;;;;;;;;;;
SectionEnd
Section "-Install MySQL database server" SEC_2
SectionIn 1
;;;;;;;;;;;;;;
SectionEnd
Section "-My Client" SEC_3
SectionIn 1
;;;;;;;;;;;;;;
SectionEnd
Section "-My Server" SEC_4
;;;;;;;;;;;;;;
SectionEnd
How it can be done...?
Thanks and regards
Sawan