I have created an image that I want to appear over whole Welcome and Finished pages of the installer, with only the bottom buttons showing.
The Welcome wizard page should be like:
The Finished page like:
I'm getting
Please help! Thanks in advance
First, note that the Welcome page is disabled by default since Inno Setup 5.5.7. If you really want it, you have to enable it using
DisableWelcomePage=no
.To display images only on the pages, you need to do:
WizardBitmapImage
(Welcome) andWizardBitmapImage2
(Finished) over their respective parent pages.postinstall
entries in the[Run]
section, for the same reason.