diff --git a/setup/installer/windows/wix-template.xml b/setup/installer/windows/wix-template.xml index f4596ca12f..72ebcc78d0 100644 --- a/setup/installer/windows/wix-template.xml +++ b/setup/installer/windows/wix-template.xml @@ -127,12 +127,26 @@ Message="This application is only supported on {minverhuman}, or higher."> = {minver})]]> + + + NEWPRODUCTFOUND + {fix_wix} NEWPRODUCTFOUND + {fix_wix} diff --git a/setup/installer/windows/wix.py b/setup/installer/windows/wix.py index 4fe7ee4ef5..2665f635db 100644 --- a/setup/installer/windows/wix.py +++ b/setup/installer/windows/wix.py @@ -43,6 +43,7 @@ class WixMixIn: x64 = ' 64bit' if is64bit else '', minverhuman = MINVERHUMAN, minver = '600' if is64bit else '501', + fix_wix = '' if is64bit else '', compression = self.opts.msi_compression, app_components = components, exe_map = self.smap,