inno-setup

Inno Setup Search for specifc file on a CD, retrieve exact filepath and return value to [Files]-Section [closed]

拜拜、爱过 提交于 2020-01-24 15:25:54
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 7 years ago . I want to make an installer for an old program which comes on 2 CDs and I want to install the files directly from the discs. At start up the setup should check if a certain file exists which means the first CD is

netsh acl setting (need alternative method - registry settings?)

南楼画角 提交于 2020-01-24 14:33:27
问题 I am using inno-setup to install a program that needs to unblock port 4326 on Win7 (permit acl access) so that GET operations can be done over HTTP to port 4326. I have a powershell script that an admin can run to unblock the port. But this does not work as an inno-setup [run] command (because the local machine usually disables scripts from running). (i.e powershell.exe -nowait & script.ps1) Is there some registry keys in the target machine that I can set that will unblock the port? That I

InnoSetup - copy files before install

ε祈祈猫儿з 提交于 2020-01-24 03:21:47
问题 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, rename in a similar way? EDIT: I tried to make this in [Files] section but I receive an error during compilation because source file does not exist: [Files] Source: "{app}\SomeFile.exe"; DestDir: "{app}\SomeDir\SomeFile.exe"; 回答1: For copying files you can use the [Files] section, but I don't think

Basic or Advanced installation mode choice to skip or use advanced options pages

余生长醉 提交于 2020-01-23 21:12:15
问题 I have a Inno Setup based installer that installs three applications, divided in two components. Now the setup asks the user for the installation directory and which components to install. I want to change the installer add this new choice: Basic mode Advanced mode as the first choice. If the user selects the Basic mode the installer should skip path and component choice and just install using default values. If the user selects the Advanced mode the installer should behaves like now. There's

How can I safely remove old InnoSetup installations?

随声附和 提交于 2020-01-22 02:13:07
问题 I use InnoSetup 5.5.1 (a) for my Delphi 6 software installations. A user just informed me that the old uninstall entries pile up in the Control Panel Remove Programs list if not uninstalled manually. I'm thinking of changing my install to remove old entries automatically but I don't want to remove old entries that are valid. Some users like to keep an old version or two around in case they don't like a later version or for fear a later version will break something. For clarity's sake, I am

How can I safely remove old InnoSetup installations?

和自甴很熟 提交于 2020-01-22 02:13:05
问题 I use InnoSetup 5.5.1 (a) for my Delphi 6 software installations. A user just informed me that the old uninstall entries pile up in the Control Panel Remove Programs list if not uninstalled manually. I'm thinking of changing my install to remove old entries automatically but I don't want to remove old entries that are valid. Some users like to keep an old version or two around in case they don't like a later version or for fear a later version will break something. For clarity's sake, I am

Can I create installer that copies files from a UNC path on the network?

不羁岁月 提交于 2020-01-21 10:09:20
问题 Is it possible to create the Inno Setup script to copy files from a UNC path on the network rather than statically adding them to the setup file? If so, can it still be done if I need to authenticate to the path first? Is there a mechanism to provide authentication info in the Inno Setup script? Essentially, I am wanting setup to just copy files from various sources over the intranet from a UNC path to put into the setup destination directory. 回答1: Yes, specify the UNC path in the Source

Can I create installer that copies files from a UNC path on the network?

时光怂恿深爱的人放手 提交于 2020-01-21 10:09:06
问题 Is it possible to create the Inno Setup script to copy files from a UNC path on the network rather than statically adding them to the setup file? If so, can it still be done if I need to authenticate to the path first? Is there a mechanism to provide authentication info in the Inno Setup script? Essentially, I am wanting setup to just copy files from various sources over the intranet from a UNC path to put into the setup destination directory. 回答1: Yes, specify the UNC path in the Source

Installers: WIX or Inno Setup? [closed]

时光怂恿深爱的人放手 提交于 2020-01-20 13:35:59
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 7 months ago . I'm comparing these two tools. The impression I have is: Inno Setup does not produce an MSI, but can do everything WIX can do WIX does produce an MSI, but has a steep learning curve Do you agree with this characterization? What other differences are there? How does WIX#

Installers: WIX or Inno Setup? [closed]

ε祈祈猫儿з 提交于 2020-01-20 13:35:09
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 7 months ago . I'm comparing these two tools. The impression I have is: Inno Setup does not produce an MSI, but can do everything WIX can do WIX does produce an MSI, but has a steep learning curve Do you agree with this characterization? What other differences are there? How does WIX#