I have an Inno Setup installer with a Tasks list which has gotten quite big mainly due to a few radio button choice lists. Is there any known way to split the Tasks list’s options into two pages, instead of making it scroll?
All of the options involved are basically configuration settings of the installed program.
Do you really have that many (one off) tasks? Splitting the page can not be done automatically by Inno. If you want them split, you will need to use a custom dialog and use
Check:parameters on the conditional entries.An alternive is to use components that is a more explicit “list of things being installed” rather than a “list of things to do”.