I'm trying to build a install package for 32bits as wel as 64bits for Symantec.
The check goes well, the package runs the setup from the right bits version.
But the package keeps on installing, the registrykey is not filled correctly.
Code: Select all
[Setup]
Version=14.2
ShowCaption=1
BlockInput=0
Platform=*
[Product]
;#FileCheckMachine, MACHINE
;#FileCheckClient, CLIENT
;ReplaceEnv <Variable>
#Set:Product
#Reg:OnUninstallProduct, DELETE
#Reg:Product
#Ini:Product
#Security:Product
#Set:Product_x32, WINDOWS32 DONTDELETE
#Set:Product_x64, WINDOWS64 DONTDELETE
[Set:Product]
[Set:Product_x32]
Call "%Src%\32Bits\setup.exe"
Call "%Src%\Change_Server\SylinkDrop.exe -silent %Src%\Change_Server\sylink.xml"
[Set:Product_x64]
Call "%Src%\64Bits\setup.exe"
Call "%Src%\Change_Server\SylinkDrop.exe -silent %Src%\Change_Server\sylink.xml"
Thanks,
Sander