1<?xml version="1.0" encoding="UTF-8"?>
2<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3    <Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
4        <Package InstallerVersion="300" Compressed="yes" InstallScope="perUser" Platform="$(var.Platform)" />
5
6        <PropertyRef Id="UpgradeTable" />
7        <PropertyRef Id="REGISTRYKEY" />
8
9        <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
10            <Component Id="PrependPath_CU" Directory="InstallDirectory" Guid="*">
11                <Condition>NOT ALLUSERS=1</Condition>
12                <RegistryKey Root="HKCU" Key="[REGISTRYKEY]">
13                    <RegistryValue KeyPath="yes" Key="InstalledFeatures" Name="$(var.OptionalFeatureName)" Value="$(var.Version)" Type="string" />
14                </RegistryKey>
15
16                <CreateFolder Directory="Scripts" />
17                <RemoveFolder Id="Remove_Scripts_CU" Directory="Scripts" On="uninstall" />
18
19                <Environment Id="PATH_CU" Action="set" Name="PATH" Part="first" Value="[InstallDirectory]" />
20                <Environment Id="SCRIPTS_PATH_CU" Action="set" Name="PATH" Part="first" Value="[Scripts]" />
21            </Component>
22            <Component Id="PrependPath_LM" Directory="InstallDirectory" Guid="*">
23                <Condition>ALLUSERS=1</Condition>
24                <RegistryKey Root="HKLM" Key="[REGISTRYKEY]">
25                    <RegistryValue KeyPath="yes" Key="InstalledFeatures" Name="$(var.OptionalFeatureName)" Value="$(var.Version)" Type="string" />
26                </RegistryKey>
27
28                <CreateFolder Directory="Scripts" />
29                <RemoveFolder Id="Remove_Scripts_LM" Directory="Scripts" On="uninstall" />
30
31                <Environment Id="PATH_LM" Action="set" Name="PATH" Part="first" Value="[InstallDirectory]" System="yes" />
32                <Environment Id="SCRIPTS_PATH_LM" Action="set" Name="PATH" Part="first" Value="[Scripts]" System="yes" />
33                <Environment Id="PY_PATHEXT_LM" Action="set" Name="PATHEXT" Part="last" Value=".PY" System="yes" />
34                <Environment Id="PYW_PATHEXT_LM" Action="set" Name="PATHEXT" Part="last" Value=".PYW" System="yes" />
35            </Component>
36        </Feature>
37    </Product>
38</Wix>
39
40