1

Is it possible to use as an output directory not only one location?

Something like this:

[Setup]
OutputDir=C:\MyProject; C:\Installers
ESCoder
  • 15,431
  • 2
  • 19
  • 42
Dennis Meissel
  • 1,825
  • 1
  • 21
  • 33

1 Answers1

1

No, you cannot.


If you are compiling the installer as a part of a larger build process, you can clone the output files as part of that.

See also: Run a [Code] or PowerShell script in Inno Setup compiler


One possible hack would be to execute some script in the background using preprocessor (as shown in the answer to the question above). And have the script watch for changes to the output file and copy it over to the other destination.

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992