| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 2 | <Package Codepage="1252" Language="1033" Manufacturer="Example Corporation" Name="MsiPackage" UpgradeCode="{12E4699F-E774-4D05-8A01-5BDD41BBA127}" Version="1.0.0.0" ProductCode="{33C58183-7333-4257-AEFD-6705DA66E617}" Compressed="no"> |
| 3 | <StandardDirectory Id="ProgramFilesFolder"> |
| 4 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" ShortName="ykd0udtb"> |
| 5 | <Component Id="test.txt" Guid="{E597A58A-03CB-50D8-93E3-DABA263F233A}" Bitness="always32"> |
| 6 | <File Id="test.txt" Name="test.txt" KeyPath="yes" Source="PFiles\MsiPackage\test.txt" /> |
| 7 | </Component> |
| 8 | </Directory> |
| 9 | </StandardDirectory> |
| 10 | <Feature Id="ProductFeature" Level="1" Title="MsiPackageTitle"> |
| 11 | <ComponentRef Id="test.txt" /> |
| 12 | </Feature> |
| 13 | <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> |
| 14 | <Media Id="1" /> |
| 15 | <Property Id="SAMPLEREGFOUND"> |
| 16 | <RegistrySearch Id="RegSearch" Root="HKLM" Key="Reg" Type="raw" Bitness="always32" /> |
| 17 | </Property> |
| 18 | <Property Id="NESTEDDIRFOUND"> |
| 19 | <RegistrySearch Id="ARegKeySearch" Root="HKLM" Key="ARegKey" Type="raw" Bitness="always32"> |
| 20 | <DirectorySearch Id="TopDirSearch" Path="TopDir"> |
| 21 | <DirectorySearch Id="SecondDirSearch" Path="SecondDir"> |
| 22 | <DirectorySearch Id="ThirdDirSearch" Path="ThirdDir"> |
| 23 | <DirectorySearch Id="FourthDirSearch" Path="FourthDir" /> |
| 24 | </DirectorySearch> |
| 25 | </DirectorySearch> |
| 26 | </DirectorySearch> |
| 27 | </RegistrySearch> |
| 28 | </Property> |
| 29 | <Property Id="SAMPLENESTEDDIRFOUND"> |
| 30 | <RegistrySearch Id="NestedRegSearch" Root="HKLM" Key="NestedReg" Type="raw" Bitness="always32"> |
| 31 | <DirectorySearch Id="SampleNestedDirSearch" Path="NestedDir" /> |
| 32 | </RegistrySearch> |
| 33 | </Property> |
| 34 | <Property Id="SAMPLEDIRFOUND"> |
| 35 | <RegistrySearch Id="SubRegSearch" Root="HKLM" Key="SampleReg" Type="raw" Bitness="always32"> |
| 36 | <DirectorySearch Id="SampleDirSearch" Path="SampleDir"> |
| 37 | <DirectorySearch Id="SubDirSearch" Path="Subdir" /> |
| 38 | </DirectorySearch> |
| 39 | </RegistrySearch> |
| 40 | </Property> |
| 41 | </Package> |
| 42 | </Wix> |