I\'m attempting to apply custom rights to a folder as part of a WiX 3.0.4318.0 installer.
In terms of the Security properties UI in explorer, I want to add Modify to
After some more work on this, my findings are:
I'm still very interested in seeing other responses, as I remain a WiX-noob.
To get it exactly as you would by setting the permissions by hand on Windows 7 and Windows XP using WiX 3.6, you would need to use this:
<util:PermissionEx
User="Users" Domain="BUILTIN"
GenericWrite="yes" GenericExecute="yes" GenericRead="yes"
Delete="yes" Synchronize="yes" />
The following combinations are what I've found
"modify" permission:
<util:PermissionEx GenericRead="yes" GenericWrite="yes"
GenericExecute="yes" Delete="yes" DeleteChild="yes" User="SOMEUSER" />
"read" permission:
<util:PermissionEx Read="yes" GenericRead="yes" User="SOMEUSER" />