17db96d56Sopenharmony_ci<?xml version="1.0" encoding="UTF-8"?>
27db96d56Sopenharmony_ci<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
37db96d56Sopenharmony_ci    <Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
47db96d56Sopenharmony_ci        <Package InstallerVersion="500" Compressed="yes" InstallScope="perUser" />
57db96d56Sopenharmony_ci        
67db96d56Sopenharmony_ci        <PropertyRef Id="DetectTargetDir" />
77db96d56Sopenharmony_ci        <PropertyRef Id="UpgradeTable" />
87db96d56Sopenharmony_ci        <PropertyRef Id="REGISTRYKEY" />
97db96d56Sopenharmony_ci        
107db96d56Sopenharmony_ci        <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
117db96d56Sopenharmony_ci            <Component Id="AppendPath_CU" Directory="InstallDirectory" Guid="*">
127db96d56Sopenharmony_ci                <Condition>NOT ALLUSERS=1</Condition>
137db96d56Sopenharmony_ci                <RegistryKey Root="HKCU" Key="[REGISTRYKEY]">
147db96d56Sopenharmony_ci                    <RegistryValue KeyPath="yes" Key="InstalledFeatures" Name="$(var.OptionalFeatureName)" Value="$(var.Version)" Type="string" />
157db96d56Sopenharmony_ci                </RegistryKey>
167db96d56Sopenharmony_ci                
177db96d56Sopenharmony_ci                <CreateFolder Directory="Scripts" />
187db96d56Sopenharmony_ci                <RemoveFolder Id="Remove_Scripts_CU" Directory="Scripts" On="uninstall" />
197db96d56Sopenharmony_ci                
207db96d56Sopenharmony_ci                <Environment Id="PATH_CU" Action="set" Name="PATH" Part="last" Value="[InstallDirectory]" />
217db96d56Sopenharmony_ci                <Environment Id="SCRIPTS_PATH_CU" Action="set" Name="PATH" Part="last" Value="[Scripts]" />
227db96d56Sopenharmony_ci            </Component>
237db96d56Sopenharmony_ci            <Component Id="AppendPath_LM" Directory="InstallDirectory" Guid="*">
247db96d56Sopenharmony_ci                <Condition>ALLUSERS=1</Condition>
257db96d56Sopenharmony_ci                <RegistryKey Root="HKLM" Key="[REGISTRYKEY]">
267db96d56Sopenharmony_ci                    <RegistryValue KeyPath="yes" Key="InstalledFeatures" Name="$(var.OptionalFeatureName)" Value="$(var.Version)" Type="string" />
277db96d56Sopenharmony_ci                </RegistryKey>
287db96d56Sopenharmony_ci                
297db96d56Sopenharmony_ci                <CreateFolder Directory="Scripts" />
307db96d56Sopenharmony_ci                <RemoveFolder Id="Remove_Scripts_LM" Directory="Scripts" On="uninstall" />
317db96d56Sopenharmony_ci                
327db96d56Sopenharmony_ci                <Environment Id="PATH_LM" Action="set" Name="PATH" Part="last" Value="[InstallDirectory]" System="yes" />
337db96d56Sopenharmony_ci                <Environment Id="SCRIPTS_PATH_LM" Action="set" Name="PATH" Part="last" Value="[Scripts]" System="yes" />
347db96d56Sopenharmony_ci                <Environment Id="PY_PATHEXT_LM" Action="set" Name="PATHEXT" Part="last" Value=".PY" System="yes" />
357db96d56Sopenharmony_ci                <Environment Id="PYW_PATHEXT_LM" Action="set" Name="PATHEXT" Part="last" Value=".PYW" System="yes" />
367db96d56Sopenharmony_ci            </Component>
377db96d56Sopenharmony_ci        </Feature>
387db96d56Sopenharmony_ci    </Product>
397db96d56Sopenharmony_ci</Wix>
407db96d56Sopenharmony_ci
41