1<?xml version="1.0" encoding="UTF-8"?> 2<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> 3 <Fragment> 4 <PropertyRef Id="ROOTREGISTRYKEY" /> 5 <PropertyRef Id="REGISTRYKEY" /> 6 7 <ComponentGroup Id="exe_reg"> 8 <Component Id="CommonPythonRegistration" Directory="InstallDirectory" Guid="$(var.CommonPythonRegComponentGuid)"> 9 <RegistryKey Root="HKMU" Key="[ROOTREGISTRYKEY]"> 10 <RegistryValue Name="DisplayName" Type="string" Value="!(loc.Manufacturer)" KeyPath="yes" /> 11 <RegistryValue Name="SupportUrl" Type="string" Value="!(loc.ManufacturerSupportUrl)" KeyPath="no" /> 12 </RegistryKey> 13 </Component> 14 <Component Id="PythonRegistration" Directory="InstallDirectory" Guid="$(var.PythonRegComponentGuid)"> 15 <RegistryKey Root="HKMU" Key="[REGISTRYKEY]"> 16 <RegistryValue Name="DisplayName" Type="string" Value="!(loc.ShortcutName)" KeyPath="yes" /> 17 <RegistryValue Name="SupportUrl" Type="string" Value="!(loc.SupportUrl)" KeyPath="no" /> 18 <RegistryValue Name="Version" Type="string" Value="$(var.LongVersion)" KeyPath="no" /> 19 <RegistryValue Name="SysVersion" Type="string" Value="$(var.ShortVersion)" KeyPath="no" /> 20 <RegistryValue Name="SysArchitecture" Type="string" Value="$(var.PlatformArchitecture)" KeyPath="no" /> 21 </RegistryKey> 22 </Component> 23 </ComponentGroup> 24 </Fragment> 25</Wix> 26