blob: c548bc1df180583c0d465d02f704e8c8113b18a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
<Fragment>
<util:User Id="Everyone" Name="Everyone" />
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<Component>
<File Source="example.txt" />
<util:FileShare Id="ExampleFileShare" Description="An example file share" Name="example">
<util:FileSharePermission User="Everyone" Read="yes" />
</util:FileShare>
</Component>
</ComponentGroup>
</Fragment>
</Wix>
|