In my installer, I have to check if the installed version is installed than the version of the application that is already installed on the computer.
If this is the case, I must close the installation program, preventing the installation.
So, I have this code below:
if GetVersionNumbersString(ExpandConstant('{app}\bin\application.exe'), Version) then begin ... end;
This returns me the version number of the application on the computer. My question is:
How to find out information in VersionInfoVersion mySetup?
source share