Is there a way where I can stop installing certain fails that are part of the archive files. More appropriately what I need is install a set of files only when I select an option in some BeforeInstalling Screens.
I want to do something like:
if A_selected then
File.Install(---);
File.Install(---);
File.Install(---);
else
-- do nothing or skip the set of files' installs
end
But does that mean I have to install these files to a temp folder and then do this File.Install action to install my files to dest. , or is there a way where I can set the file's properties not to install these files (probably on WhileInstalling actions) without the setup copying these to anywhere in the host machine???
Please suggest if there is an existing way to skip the setup from installing a set of files based on some input given from BeforeInstalling screens.
Thank You!

Reply With Quote