| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" |
| 2 | xmlns:ex="http://www.example.com/scheams/v1/wxs"> |
| 3 | <Package Name="MsiPackage With Registry" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a" Compressed="no"> |
| 4 | <MajorUpgrade DowngradeErrorMessage="Don't upgrade" /> |
| 5 | |
| 6 | <Feature Id="ProductFeature"> |
| 7 | <ComponentGroupRef Id="ProductComponents" /> |
| 8 | </Feature> |
| 9 | </Package> |
| 10 | |
| 11 | <Fragment> |
| 12 | <StandardDirectory Id="ProgramFilesFolder"> |
| 13 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> |
| 14 | </StandardDirectory> |
| 15 | </Fragment> |
| 16 | |
| 17 | <Fragment> |
| 18 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> |
| 19 | <Component> |
| 20 | <ex:ExampleSetKeyPath Registry="RegMadeKeyPath" /> |
| 21 | <RegistryValue Id="RegMadeKeyPath" Root="HKLM" Key="SOFTWARE\Example Corporation" Name="Test" Value="Thing" KeyPath="no" /> |
| 22 | </Component> |
| 23 | </ComponentGroup> |
| 24 | </Fragment> |
| 25 | </Wix> |