hirma
hirma

Reputation: 11

Inno Setup - How to copy the created setup file

I want to copy the created setup file to a network directory. I think the [Run] section will be the best position to do this, but I cannot not found any possibility to call my copy function. Any idea to this issue?

Also, is it possible to use variables declared in the [setup] section for the copy path?

My procedure will be like this (trying to use the variables):

[Code]
procedure CopyFile();
begin
  FileCopy('{OutputDir}/{OutputBaseFilename}',
    'V:/Service/Software/ASCDeploy/Prod/Asc.Tools.FileCopy/{OutputBaseFilename}', False);
end;

Upvotes: 1

Views: 341

Answers (1)

Martin Prikryl
Martin Prikryl

Reputation: 202128

There's no way to run any code after Inno Setup finishes compiling - At least not in the original Inno Setup.

See also Inno Setup - Post Processing.

Upvotes: 1

Related Questions