Re: [WiX-users] FileSharePermission - Change?

2014-08-14 Thread Nick Ramirez
A very old post, but in case anyone was wondering, to get the Change permission on a file share, use the following properties on FileSharePermission: GenericWrite="yes" Traverse="yes" Delete="yes" GenericRead="yes" -- View this message in context: http://windows-installer-xml-wix-toolset.6

Re: [WiX-users] FileSharePermission - only GenericAll works

2014-07-09 Thread Nick Ramirez
Okay, I was wrong! I guess by setting only Read permission on the folder (using Read, GenericRead, and ReadPermission -- not sure yet which one is the magic one), the user is able to read the files in that folder and cannot change/modify them. I guess it works even though the checkboxes for Read an

[WiX-users] FileSharePermission - only GenericAll works

2014-07-09 Thread Nick Ramirez
The util:FileSharePermission element has many attributes for setting ACLs on a file share, but none of them seem to work except for GenericAll. For example, the following code will not give the user the specified permissions: I am install

[WiX-users] FileSharePermission to group

2013-05-17 Thread Martin Aigner
Hi, I’m trying to create a file share with the FileShare element. The setup should create permissions to a user group. So I created a permission entry with FileSharePermission element. Because the FileSharePermission element only accepts a reference to the user element (and not group) I defined i

Re: [WiX-users] FileSharePermission - Change?

2010-07-15 Thread Rob Mensching
Probably the correct combination of flags. On Wed, Jul 14, 2010 at 12:13 AM, Elfe Xu wrote: > > WOW! > GenericRead + Traverse really works for Read! > Why it has such an interesting behavior? Is it a bug or by design? >The GenericRead='yes' Traverse='yes' seems to give Read. > -- > View this

Re: [WiX-users] FileSharePermission - Change?

2010-07-14 Thread Elfe Xu
WOW! GenericRead + Traverse really works for Read! Why it has such an interesting behavior? Is it a bug or by design? The GenericRead='yes' Traverse='yes' seems to give Read. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/FileSharePermission-C

Re: [WiX-users] FileSharePermission for NT AUTHORITY\NetworkService User

2008-11-25 Thread Amy Rosewater
of execution of those two actions is very different so beware. Amy -Original Message- From: Gremlin [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 25, 2008 1:33 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] FileSharePermission for NT AUTHORITY\NetworkService User Hello

[WiX-users] FileSharePermission for NT AUTHORITY\NetworkService User

2008-11-25 Thread Gremlin
Hello! How can I set the file share permission for the NetworkService-User? Somehow it didn't work with the FileSharePermission-Tag. Could you give me an example? Thank you, Chris -- View this message in context: http://n2.nabble.com/FileSharePermission-for-NT-AUTHORITY%5CNetworkService-User-

[WiX-users] FileSharePermission

2008-09-12 Thread Leo ...
How do I define share permissions using "FileSharePermission" for the "Administrators" group? thx! - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with

[WiX-users] FileSharePermission - Change?

2008-06-12 Thread Mole, Chris
All, I'm using the FileSharePermission element in WiX v3.0.3526.0. Thanks to Rob for your previous answers on getting this to work. When I create a share manually, there are only three possible permissions: Full Control, Change and Read. However, the FileSharePermission element has many attri

Re: [WiX-users] FileSharePermission has no Domain

2008-06-06 Thread Bob Arnson
Mole, Chris wrote: > In the util:FileSharePermission element, there's no Domain attribute. Is > there some other way to grant fileshare permissions to a domain account? > Use DOMAIN\username for the User value. -- sig://boB http://joyofsetup.com/ -

[WiX-users] FileSharePermission has no Domain

2008-06-05 Thread Mole, Chris
Hi, In the util:FileSharePermission element, there's no Domain attribute. Is there some other way to grant fileshare permissions to a domain account? Thanks, Chris - Check out the new SourceForge.net Marketplace. It's the

Re: [WiX-users] FileSharePermission and Permission

2008-05-28 Thread Bob Arnson
zhisheng huang wrote: A newbie's stupid question. What is the difference between FileSharePermission and Permission? Could someone please explain the exact meaning of the following code? Permission manages the NTFS security for the folder (Security tab in Explorer); FileSharePermission manage

[WiX-users] FileSharePermission and Permission

2008-05-28 Thread zhisheng huang
Hi, A newbie's stupid question. What is the difference between FileSharePermission and Permission? Could someone please explain the exact meaning of the following code?