Inno Setup is a tool to create setup programs with an embedded Pascal-derived scripting language.

learn more… | top users | synonyms

0
votes
0answers
8 views

inno-setup OR javafx packager changes my desktop icon, jagged edges

So I'm using Innosetup with javafxpackager, I specify a desktop icon (.ico) in the iss file with 'SetupIconFile'. After installing the application (Win7) the icon on the desktop has jagged edges. At ...
0
votes
0answers
11 views

Correctly show component sizes with shared files

I have an inno setup project which includes 5 different sub-programs, installable as components. Many of the dlls that end up in the final program folder are shared between some of these, but not all. ...
2
votes
1answer
13 views

how to pass parameter into Files section in Inno

I've googled a lot but do not find the answer on my question. How to correctly pass a parameter to function like this: getPath('myParam')? I have such code: [Files] Source: "AppName\*"; DestDir: ...
0
votes
3answers
24 views

How to execute innosetup installer from third party silently and without it attempting to install dependencies?

I have an installer from a third party. Through trial and error I discovered it was an innosetup installer. When I call it with the /silent flag it installs just fine, until it executes installers ...
1
vote
1answer
24 views

No icon with Inno Setup

I have a application that executes normally. But when I make a setup file with Inno Setup no icon is displayed. The setup script is: ; Script generated by the Inno Setup Script Wizard. ; SEE THE ...
0
votes
0answers
24 views

How to hide default application's path of 3rd party software Using Innosetup

How to hide application's setup directory of thrid party software while doing silent installation using InnoSetup. Can anyone help me out.
1
vote
2answers
43 views

Innosetup adding multiple exe files and executing within the main setup

I would like to know how to add additional setup exe and execute the additional exe with my main exe using innosetup. Kindly help me as I am trying this for the last 3 days as I am new in using ...
2
votes
1answer
40 views

InnoSetup - copy files before install

How can we copy, move, rename user files before installation? We can easily delete files using the [InstallDelete] section: [InstallDelete] Type: files; Name: "{app}\SomeFile.exe"; Can we do copy, ...
3
votes
1answer
31 views

Writing variables to .txt after setup is done

Is there a way to write a variable to the DestDir after setup is done? i want to store a variable to a text file with: SaveStringToFile('c:\filename.txt', #13#10 + 'the string' + #13#10, True); Is ...
3
votes
1answer
33 views

Get FileName of setup.exe File

how do i get the Exe-Name of the setup file itself? I want to get the exe filename itself written to a variable in the inno setup script. Inno Setup version 5.5.3
2
votes
1answer
39 views

Add a check box to not add the start menu icons

So this is probably really simple, and I've been looking and looking for an example, but can't seem to find one. I just need to add a check box to select the option NOT to create a start menu ...
0
votes
1answer
50 views

Inno setup: Display Images using timer

We are using below code to display images(slide show) on Finished page. [Setup] AppName=My Program AppVersion=1.5 DefaultDirName={pf}\My Program OutputDir=userdocs:Inno Setup Examples Output ...
0
votes
2answers
43 views

inno setup- installing windows services using sc create

I have 2 binaries where in i have to create service for them. I tried this solution example with "sc create" . But did not got the same problem. it's getting stuck at the end of the installation. what ...
2
votes
2answers
40 views

How can I extract an embedded archive to disk during the installation process

I have an embedded 7Zip archive in my setup script. Is there a "native" way of extracting the contents to a target folder? If not any hints on how this could be achieved? Updated with my ...
1
vote
1answer
50 views

How to add a confirm task during uninstall section by using inno setup?

I have a user data located at user's folder such as : C:\Users\Administrator\profile.ini I know how to delete it: [UninstallDelete] Type: files; Name: "C:\Users\{username}\profile.ini" The thing ...
2
votes
2answers
46 views

Inno Setup Text on wpSelectComponents

Attempting to place some text on wpSelectComponents form. I can display a button on this WizardForm and I can display a panel (by declaring surface as WizardForm and visible=False until CurrPageId = ...
2
votes
1answer
45 views

Keep getting compiler error period ('.') expected - Inno Setup

Have never used Inno Setup before and with the help of people on stack overflow have managed to figure out most of it. However I have rewritten this setup many times as I keep getting a period ('.') ...
4
votes
1answer
48 views

How to read the VersionInfoVersion of my setup to compare with the existing version

In my installer, I have to check if the version being installed is lower than that of the application that is already installed on the computer. If so, I have to close the installer without allowing ...
1
vote
1answer
40 views

Adding nodes to xml with DOM in inno Setup - strange problems

Very strange problem: I use the DOM to edit an xml file (a .exe.config file for an app that needs to interact with ours), but seeing as I have to bulk-add several similar sections, I made a function ...
1
vote
2answers
47 views

Can I have more than one {app} variable in Inno Setup?

I am making an inno setup script. My setup really needs the user to choose to two customized install locations. But there is only one {app} variable in inno. Our software is an audio plugin ...
2
votes
1answer
49 views

How to determin if folder already exists in innosetup

Can you give me instructions how to check if folder already exists (right after the user selected a folder), and if so - prompt him with a similar message to the attached one? Thank you
1
vote
1answer
43 views

Checking for success on xml node fetch in Inno Setup

I've read through CodeAutomation.iss and a bunch of other sources, but I couldn't find the answer to this... Using the example provided, the xml objects are put in variables of the "Variant" type. I ...
1
vote
1answer
74 views

inno setup custom page with checkbox and dropdown list

Is it possible to have a custom page with a drop down list, check boxes, and a button possibly changing the check boxes based on what is chosen from the drop down list. The button will just be used ...
1
vote
1answer
90 views

Inno Setup Run Extracted Batch File As Administrator

I am building an installer with Inno Setup and would like for the extracted files to be run as an administrator. Is there a way to force the extracted files (i.e. batch file) to run as an ...
2
votes
1answer
62 views

How to check IIS 7 or 7+ is installed or not using innosetup?

I want to check whether IIS 7 or 7+ is installed or not before my main installation starts in innosetup. If IIS7 or 7+ is not available,an alert should be shown. What condition i need to check? can i ...
1
vote
0answers
40 views

Inno Setup: Unable to delete folder during uninstallation

we are using delete, removedir, deltree functions to delete the files and folders during the uninstallation of our product. so some times these functions are unable to delete the files (mostly .lck ...
1
vote
1answer
30 views

How to save installation path to a file during installation?

My application is installed by InnoSetup. The user may change the installation folder when he starts install the application. I'd like to store the installation path right after the user decided ...
1
vote
0answers
79 views

How to install .net framework 4.5 after download completes from web using innosetup?

I want to download and install the .netframework 4.5 from web using innosetup. I followed these procedure, 1.I downloaded and installed InnoTools Downloader. 2.In InitializeWizard i declared ...
0
votes
0answers
51 views

Difference between inno setup and launch4j

I want to create a package for my java application. the application has a GUI. I am confused about the difference between the inno setup and the launch4j My main question is does inno also create ...
2
votes
1answer
98 views

Inno setup command line progress

How can I get progress when I'm executing inno script from a command line compiler (iscc.exe)? I can pipeline the output but I want to get % completed as well.
1
vote
1answer
62 views

Update DLL Server with Inno Setup

How do I structure my Inno Setup script to automatically register a dll if it is the first time a user has installed my application but unregister a previous version if there is one and then register ...
1
vote
1answer
24 views

InnoSetup: Can I call a custom method from a pre-processor directive

I have a [code] section which defines a method I wrote, let's say it's foo. I want to test the result of foo in a pre-processor directive, like this: #if foo() ... #endif But the InnoSetup ...
0
votes
1answer
51 views

How to change the downloadpath in InnoSetup?

I want to download and install the .net framework 4.5 with silent installation in innosetup,using below condition i will check whether .netframework 4.5 available or not, if not i will download from ...
0
votes
0answers
49 views

Have program launch at startup as an option in Inno Setup

I have a simple Inno Script that installs my program, what I can't seem to get right is for Inno to ask the user if they want the program to start when windows starts. I have the option to create ...
0
votes
2answers
54 views

Issues when installing .exe file generated using Inno on windows xp 64 bit machine

I have generated an installer(.exe) for 64 bit machine using Inno 5.5.3. When I try to run the .exe file on my Windows XP 64 bit machine I get the following error message "This program does not ...
0
votes
1answer
48 views

InnoSetup pascal inheriting TControl causes identifier expected

I am trying to create my own InnoSetup Control (combined dropdown and file input box with browse button). I need dynamic number of these controls. My idea was to inherit TControl and build the needed ...
1
vote
1answer
124 views

How to install Crystal Reports for .Net 3.5 Winforms application

We have a VB.Net Winforms (x86) application that uses the freely redistributable version of Crystal Reports. Although the application works fine on my test machine, when installing on a client's ...
1
vote
1answer
50 views

Python Distribute Module using Inno Setup

Is it possible to distribute a Python library I made using Inno Setup instead of Python distutils? I am talking about the distutils Windows installers. If so, how? The modules are at ...
0
votes
1answer
161 views

inno setup compiled exe is not installing app on Windows 8 64 bit, unsupported 16 bit application

I created a setup file using innoIDE v1.0.0.0078 and sent it to our client but he is unable to install our 64-bit application. It won't load setup and I get the message: 'Unsupported 16-bit ...
-1
votes
1answer
87 views

Password after MySQL Community Server install from zip [closed]

I have been installing the MySQL Community Server from ZIP Archive with the Inno Setup. I have used this install script (little modified) ...
1
vote
1answer
61 views

InnoSetup, How to load a custom text into RTFText

I'm trying to store the text of InfoBefore textfile into a variable and then load it into the RTFEditor with a custom font color and backcolor. When I try to load the text from the variable it says ...
1
vote
1answer
70 views

Can I tell Inno Setup *not* to create unins000 files

I'm using Inno Setup to package a third-party installer with another EXE I built to prep our firm environment for the install. I'd really like to delete all the installer files from the end user's ...
1
vote
1answer
102 views

Install IIS using Inno Setup

I can't seem to figure out how to run this code using Inno Setup (below). I'm trying to install IIS7+. If I run it directly in the cmd prompt, it runs fine but because of the "start" part at the ...
2
votes
1answer
82 views

How to get Inno Setup to check if a file doesn't exist

When I compile the Inno Setup script below, it gives me an error (below). I borrowed the code from here so I'm not sure why it's not working properly. Line 136: Column 10: Invalid prototype for ...
4
votes
2answers
129 views

How to create a shortcut to launch an App with admin privileges from the cmd-line?

I have an installer (Inno-Setup) that installs my application to a path defined by the user. At the end of the install routine i want to create a shortcut that starts the application with admin ...
0
votes
1answer
115 views

Inno Setup - How can I put a message on the welcome page

Can I put a message on the Inno Setup Welcome page? I would like something like this
1
vote
1answer
96 views

Custom Innosetup page with custom buttons

I would like to create a custom Innosetup page which has the following layout. That will be displayed as the very first page and if user clicks the Configure button, he will be taken to the typical ...
0
votes
0answers
214 views

Install Segoe UI Symbol with Inno Setup on Windows 7

I am using Windows 8 on my development machine and I am installing a program on a tablet computer that runs Windows 7. I need to install a newer version of Segoe UI Symbol on the tablet during ...
0
votes
2answers
122 views

InnoSetup, How to change the color of RichEditorViewer

I need to change the font color property of the RichEditorViewer of the default pages, but I can't find the control names or property name, I need help with this... The RichEditorViewer of the ...
2
votes
1answer
70 views

Change AppID using [Code] just before the installation in Inno Setup

In a setup I give the user the option to install either a 32 or 64 bit version using radio buttons. I then want to append either '_32' or '_64' to the AppID. I know I can change the AppID using ...

1 2 3 4 5 22