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