Max Alexander
Max Alexander

Reputation: 5581

Show Custom Wizard Pages After Installation

Is there a way to show a custom wizard page or a custom page after the files have been dumped to the {app} directory?

Upvotes: 2

Views: 3817

Answers (2)

Deanna
Deanna

Reputation: 24303

Yes, by specifying the correct page ID you want it to appear after when you create the page. wpInstalling, wpInfoAfter, and wpFinished are all after the actual install.

Note that you shouldn't use the page numbers directly as they can change in different versions of Inno Setup

Upvotes: 6

Robert Love
Robert Love

Reputation: 12581

You could build a custom dialog using CreateCustomForm and call it using the AfterInstall hook of a File in the [Files] section.

Upvotes: 2

Related Questions