Inno Setup is a tool to create setup programs with an embedded Pascal-derived scripting language.
0
votes
0answers
2 views
Inno Setup Check if Antivirus Software is Installed
is there a way to check if Antivirus software is installed using Inno Setup?
0
votes
0answers
6 views
Inno Setup Help Script
I am wondering what help file script does the owner of Inno Setup use. The script looks like an online chm viewer. Anyone have any ideas? http://www.jrsoftware.org/ishelp/
1
vote
1answer
22 views
Inno Setup - How to set full permission on a folder, not just for it's contents
My kit created with Inno Setup installs my application in C:\Program Files\MyApp.
When my application starts, it tries to create new log files in C:\Program Files\MyApp\logs\ but it fails.
In my ...
1
vote
1answer
19 views
Inno setup i18n for custom panel
I made a custom panel for Inno-Setup and i want internationalization for this.
Can i use the *.isl files to add my translation keys or must i use the [custommessages]? And how can i access the keys ...
2
votes
0answers
30 views
Creating folder for log files for NLog with InnoSetup
I'm having an issue where I need my users to be able to run my application without administrator rights, but at the same time, I need NLog to be able to create it's log files, which it needs ...
1
vote
0answers
27 views
Shutting down applications using our files
I had an installer that was built using Inno Setup 5.0.8, and i just rebuilt this installer using Inno Setup 5.5.3 (Latest version by now).
In the version built with the older IS version, when a file ...
1
vote
1answer
21 views
Install a font with several styles in Inno Setup
Assume that there is a font that has several styles. Something like, NewFontNormal.ttf, NewFontBold.ttf, NewFontItalic.ttf and so on. Who can I install them in a way that after installation, I have ...
0
votes
2answers
27 views
Inno Setup “All Users” Constant
What is the "All Users" constant? I would need to create some shortcuts in this directory:
"C:\Users\All Users\Microsoft\Windows\GameExplorer"
Could someone help me?
0
votes
2answers
38 views
Creating a windows installer for python using inno setup
I am developing an application that needs python to be installed to execute. I am thinking of creating an installer(for windows) which will install the required setups automatically before installing ...
1
vote
0answers
25 views
Load SetupIconFile icon from an exe file
Is there any way to load the setup icon from an exe?
The below line doesn't work:
[Setup]
SetupIconFile: "{#MyAppExeName}, {#MyIconIndex}"
Thanks.
0
votes
1answer
20 views
Schtasks AC Power Issue
I am planning to use Inno Setup to schedule a task for my program. This leads me to use schtasks.exe to create the task. The setup must work under XP, so the /XML option is not viable. The program is, ...
1
vote
0answers
49 views
Check for available port when installing using inno setup
I am trying to create the following functionality in inno setup.
The user is asked to enter a port they wish my application to communicate on.
Once they have entered a port they can hit a check ...
2
votes
0answers
60 views
Calling consecutive DLL's from {tmp} in Inno Setup
I want to use a DLL (lets say 'A.dll'), that I created in Delphi, within my Inno Setup script that uses a bunch of other DLLs ('B.dll', 'C.dll', ...). All these dll-files are included in the ...
1
vote
1answer
31 views
Load unistall icon from exe file in the inno setup
I have all of my icons in my executable file. If I want to change the uninstall icon of my program which is shown in Start Menu, I can easily do that by:
[Files]
Source: "icons\uninstall.ico"; ...
0
votes
1answer
22 views
msiexec run from innosetup displays help dialog
I've got the following code as part of my setup script:
[Files]
Source: "{#SetupDir}\IronPython-2.7.3.msi"; DestDir: "{app}\Resources"; Components: Centipede; Check: IronPythonNotInstalled
[Run]
...