List of Inno Setup pages with options and screenshots

What are all the available Inno Setup pages that are available by default (without custom screens), what they look like, what their order is, what their default settings are, and how can I change this?

+4
source share
1 answer

The Inno Setup online help provides an overview of the available wizard pages . It lists most of the information you requested. However, it skips the default state, section and screenshot.

You can use this minimal Inno Setup script to view all the dialogs:

[Setup]
AppName=Stack Overflow
AppVersion=0.0.0.0
DefaultDirName={pf}\Stack Overflow
DefaultGroupName=Stack Overflow
VersionInfoVersion=0.0.0.0
OutputDir=compiled
WizardImageFile=LargeWizardImage.bmp
WizardSmallImageFile=SmallWizardLogo.bmp

DisableWelcomePage=no
LicenseFile=so.txt
Password=stack
InfoBeforeFile=info.txt
UserInfoPage=yes

[Components]
Name: "StackOverflow"; Description: "Demo component"; Types: full
Name: "TasksDemo"; Description: "Tasks component"; Types: custom

[Files]
Source: "SmallWizardLogo.bmp"; DestDir: "{app}"; DestName: "Icon"
[Icons]
Name: "{group}\DemoIcon"; Filename: "Icon"

[Tasks]
Name: desktopicon; Description: "Create a &desktop icon"; GroupDescription: "Additional icons:"; Components: TasksDemo

Here they are, those that are hidden by default, break through in the upper right corner.

Welcome page

: [Setup] DisableWelcomePage
: yes ( " " )

Welcome page

: [Setup] LicenseFile
: ( " " )

License agreement

: [Setup] Password
: ( " " )

Password

: [Setup] InfoBeforeFile
: ( " " )

Information

: [Setup] UserInfoPage
: ( " " )

User information

: [Setup] DisableDirPage
: auto ( ", " )

Destination

: [Components]
: ( " " )

Component Selection

""

: [Icons] [Setup] DisableProgramGroupPage
: ( " " )

Menu folder

: [Tasks]
: ( " " )

Select Tasks

: [Setup] DisableReadyPage
: no ( "" )

Ready to install

: , , ,

: ( " " )

Preparation for installation

+5

Source: https://habr.com/ru/post/1653302/


All Articles