main
wxs 11 lines 546 Bytes
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
2 <Fragment>
3 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
4 <Component>
5 <File Source="example.txt" />
6 <RegistryValue Root="HKLM" Key="SOFTWARE\[Manufacturer]\[ProductName]" Name="InstallFolder" Value="[INSTALLFOLDER]" />
7 <util:RemoveFolderEx On="both" Property="REMOVEPROP" />
8 </Component>
9 </ComponentGroup>
10 </Fragment>
11 </Wix>