main
wxs 26 lines 1.44 KB
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 Id="example.txt" Source="example.txt">
6 <util:PermissionEx User="Everyone" GenericAll="yes" Inheritable="no" />
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" Inheritable="no" />
13 </ServiceInstall>
14 <Registry Action="createKey" Root="HKLM" Key="TestKey">
15 <util:PermissionEx User="Everyone" GenericAll="yes" Inheritable="no" />
16 </Registry>
17 <RegistryKey Id="ExampleRegistryKey" ForceCreateOnInstall="yes" Root="HKLM" Key="TestRegistryKey">
18 <util:PermissionEx User="Everyone" GenericAll="yes" Inheritable="no" />
19 </RegistryKey>
20 <RegistryValue Root="HKLM" Key="TestRegistryValueKey" Value="abc">
21 <util:PermissionEx User="Everyone" GenericAll="yes" Inheritable="no" />
22 </RegistryValue>
23 </Component>
24 </ComponentGroup>
25 </Fragment>
26 </Wix>