Inno Setup Script Includes is a collection of helpful functions for Inno Setup
Questions tagged [issi]
10 questions
3
votes
1 answer
ISSI Inno Setup function
Im using ISSI plugin for Inno Setup and i am getting a error trying to use a ISSI function in my [CODE] section
Uknown identifier 'ISSI_CurPageChanged'
The plugin is free and it´s main functions are available…

Andre Garcia
- 894
- 11
- 30
2
votes
1 answer
Display Splash Screen while running setup in silent or very silent mode
I want to run a setup but display nothing else but a splash screen. I am currently using the logic suggested in this answer
to run the setup in background:
How to make the silent installation by using Inno Setup?
However, I want to show a simple…

shams.haq
- 703
- 1
- 6
- 20
2
votes
1 answer
How can I prevent showing the splash screen when I need it in Inno Setup?
How can I prevent showing the splash screen when I need it?
Should I add some ISSI-code to do that?
Here is my code:
#define ISSI_Splash "C:\InnoSetupProject\Images\client.bmp"
#define ISSI_Splash_T 3
#define ISSI_Splash_X…

JConstantine
- 1,020
- 7
- 19
2
votes
1 answer
Implementing event functions InitializeWizard while using ISSI (to add background image) in Inno Setup: Duplicate identifier 'INITIALIZEWIZARD'
I'm trying to put a background image to Inno Setup installer using ISSI along with a song using the "BASS audio library", but I can only keep one of them active since I get this compiler error:
Duplicate identifier 'INITIALIZEWIZARD'
Would I have…

空のYe Falls
- 23
- 2
1
vote
1 answer
Can I swap ISSI SplashScreen and language selection dialog in Inno Setup?
Here's my code:
#define ISSI_Splash "C:\InnoSetupProject\Images\client.bmp"
#define ISSI_Splash_T 3
#define ISSI_Splash_X 500 …

JConstantine
- 1,020
- 7
- 19
1
vote
1 answer
How to hide the splash screen in verysilent mode setup of Inno Setup using ISSI?
I'm using ISSI (that is a 3rd party of Inno Setup) for the splash screen of my setup. But when I launch it in /VERYSILENT mode I still have the splash screen that it displayed.
I think the splash screen is displayed before the setup or something…

Amlys
- 125
- 1
- 7
1
vote
2 answers
Inno Setup - How to re-align the checkbox in the wpFinished page with image customized by ISSI script?
I am new to the Inno Setup concept but I still have created a installer with the help through Internet. I have been looking for a script to re-align the checkboxes (Direct X, DirectPlay) in the wpFinished page.
I have used the ISSI script to…

Ashwin
- 21
- 5
0
votes
1 answer
Why doesn't this code work like it should in Inno Setup?
At the very beginning of the script I have these lines of code:
#define ISSI_Splash "C:\InnoSetupProject\Images\client.bmp"
#define ISSI_Splash_T 3
#define…

JConstantine
- 1,020
- 7
- 19
0
votes
1 answer
Why doesn't the _issi.cfg file work in Inno Setup?
I wrote this code to add the splash screen before my installer starts:
[ISSI]
#define ISSI_Splash "C:\ABoffice\Install\InnoSetupProject\Images\client.bmp"
#define ISSI_Splash_T 5
#define ISSI_Splash_X 500
#define ISSI_Splash_Y 220
//#define…

JConstantine
- 1,020
- 7
- 19
0
votes
1 answer
Add custom pages AND external .isi file in setup script?
Is there a way for an Inno Setup script to include code that creates custom pages AND an external .isi file (I'm using the ISSI add-in.) If I try to use both, I get the error message that says "Duplicate Identifier: INITIALIZEWIZARD" because…

emendelson
- 416
- 5
- 18