Questions tagged [inno-setup-v6]

Inno Setup is a free installer for Windows programs by Jordan Russell and Martijn Laan. First introduced in 1997, Inno Setup today rivals and even surpasses many commercial installers in feature set and stability. Please Limit the tag for asking questions to Inno Setup

43 questions
0
votes
2 answers

INNO SETUP Using checkboxes

I'm not familiar with Pascal. I would like to show 10 checkbox before installing. The user can check several checkboxes according to the group of catalogs he wants to install (10 checkboxes = 10 groups of catalogs). These checkboxes have to be…
0
votes
0 answers

Uncompressing zip and 7z files after installation,then deleting them,but keep extracted content intact?

I'm using Inno Setup 6.1.2. I've made an installer that downloads zip and 7z files off the internet,and it should then after installing them, uncompress them to {app} directory,and at the end delete zip and 7z files,while keeping extracted content…
Someone
  • 9
  • 3
0
votes
0 answers

Can we use apache Tika without Java but with JDK so I can provide it with the exe

When deployed as an exe in python tika requires java right so I installed open JDK but the tika still shows unable to start server do have to change environment variables and if so then when
0
votes
0 answers

Proxy and Virtual machine filter using 3rd party API in Inno Setup

I am trying to use a 3rd party API to filter proxy traffic and Virtual machine and different file for each, I have use the following code ( https://pastebin.com/hWZX1Sxq ) JasonParser File (https://pastebin.com/hNspZxVY) but the function does not…
Tuk Tuk
  • 57
  • 5
0
votes
1 answer

Error when saving to mapped drive in Inno Setup Only

I am experiencing exactly the same issue as this question the only difference being I am using Inno Setup instead of Sublime Text. I can read/write to the mapped (Z:) drive with any application (notepad, wordpad, paint, etc...), even dropping into…
user815129
  • 2,236
  • 2
  • 20
  • 40
0
votes
0 answers

Access Denied restore SQL Server backup file in Inno Setup

I want to restore a SQL Server .bak backup file in InnoSetup. Here is the code I use: try ExtractTemporaryFile ('mydb.bak'); ADOConnection := CreateOleObject('ADODB.Connection'); ADOConnection.ConnectionString := …
sina
  • 331
  • 4
  • 12
0
votes
1 answer

Inno Setup installer page with Exec batch and file Stream progress never exits Stream and hangs indefinitely even with proper bat termination

I am running into problems with my inno setup hanging indefinitely while logging output from a bat file. The bat file is launched properly, and terminates with an EXIT 0. This has been tested by launching the bat with the regular [RUN] {cmd}…
FuzzkingCool
  • 309
  • 4
  • 14
0
votes
1 answer

Install App in VERYSILENT mode with command line which written with inno setup script

How Should i modify my code so i can let user detemine the path of second directory (path of java in script) I used this Command befor i try in mode: mysetup.exe /DIR="C:\test" installation path second path And how to let user to choose one of…
MajdAlo
  • 33
  • 7
0
votes
0 answers

Inno Setup CloseApplications during Uninstall?

The CloseApplications [Setup] value seems to work fine. But during uninstall, I don't get the same in-use message with option to kill them. Instead it just schedules a reboot. The File source line uses both uninsrestartdelete and restartreplace,…
df234987
  • 513
  • 2
  • 13
0
votes
1 answer

Skip pages when updating existing installation

How do I have InnoSetup skip the license agreement page as well as the page asking if the user wants to create a desktop shortcut when the there is already an existing installation? I do want these to show on the initial installation. When the app…
lucky.expert
  • 743
  • 1
  • 15
  • 24
0
votes
1 answer

How can I replace a file after installation, in Innosetup?

Only After the installer Has successfully been installed, I want to copy and replace with this folder in C:\program [files] ;(replace with this folder) Filename: {App}\folder DestDir: C:\program
MendelG
  • 14,885
  • 4
  • 25
  • 52
0
votes
0 answers

How to get Advanced BrowseForFolder window in InnoSetup?

As you can see on the image, browsing folder in InnoSetup's installer looks old-style. How can i achieve this kind of browse for folder window?
0
votes
1 answer

How to run batch file in Inno Setup, while showing progress as each command gets executed

EDIT: I can't find the solution but Martin's method looks like only solution for this situation. I am trying to execute about 30-40 command line parameters. I don't want to separate commands with "&&" because it looks very complex all of these…
1 2
3