main
wxs 26 lines 1.35 KB
Raw
1 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
2 <Fragment>
3 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
4 <Component>
5 <File Source="example.txt">
6 <util:PermissionEx User="Everyone" GenericAll="yes" />
7 </File>
8 <CreateFolder>
9 <util:PermissionEx User="Everyone" GenericAll="yes" />
10 </CreateFolder>
11 <ServiceInstall Name="testsvc" Type="ownProcess" Start="disabled" ErrorControl="normal">
12 <util:PermissionEx User="Everyone" GenericAll="yes" />
13 </ServiceInstall>
14 <Registry Action="createKey" Root="HKLM" Key="TestKey">
15 <util:PermissionEx User="Everyone" GenericAll="yes" />
16 </Registry>
17 <RegistryKey Id="ExampleRegistryKey" ForceCreateOnInstall="yes" Root="HKLM" Key="TestRegistryKey">
18 <util:PermissionEx User="Everyone" GenericAll="yes" />
19 </RegistryKey>
20 <RegistryValue Root="HKLM" Key="TestRegistryValueKey" Value="abc">
21 <util:PermissionEx User="Everyone" GenericAll="yes" />
22 </RegistryValue>
23 </Component>
24 </ComponentGroup>
25 </Fragment>
26 </Wix>