Search code examples
inno-setup

Disable setup types dropdown list on Inno Setup Selected Components page


Is it possible to disable the dropdown menu that appears on the Select Components page of the installer? Will this negatively affect anything or can the user be fine with just checking the components he/she wants manually?


Solution

  • Just specify a single custom setup type (iscustom flag) and you will get the Select Components screen without the dropdown menu.

    [Types]
    Name: "custom"; Description: "Custom installation"; Flags: iscustom
    

    And include all components into the custom type:

    [Components]
    Name: "program"; Description: "Program Files"; Types: custom; Flags: fixed
    Name: "help"; Description: "Help File"; Types: custom;
    ...
    

    Select Components screen