Adam Langley-4 wrote:
> 
> <!-this is outside the component -->
> 
> <util:Group Id="UsersGroup" Name="Users" />
> 
> <!-this is all inside of the component -->
> 
> <util:User Id="MyUser" CreateUser="yes" CanNotChangePassword="yes"
> Name="MyUser" Password="myuser" RemoveOnUninstall="yes"
> PasswordNeverExpires="yes" Domain="[MachineName]" >
> 
>       <util:GroupRef Id="UsersGroup" />
> 
> </util:User>
> 

Hi,
I had an issue when retrieving a group with util:Group when setting rights
on MSMQ. I had to use util:User instead. Then the setting of MSMQPermission
worked as expected
<Component ...>
    <util:User Id="UsersGroup" Domain="[LOGONDOMAIN]" Name="Users"
CreateUser="no" FailIfExists="no" RemoveOnUninstall="no" />
    <msmq:MessageQueue ... >
        <msmq:MessageQueuePermission User="UsersGroup" Id="MyTestQueuePerm"
PeekMessage="yes" ReceiveMessage="yes" WriteMessage="yes" />
    </msmq:MessageQueue >
</Component>

I was wondering if there is an bug in util:Group or if I used util:Group
incorrectly.

Regards Dominik
-- 
View this message in context: 
http://www.nabble.com/Creating-a-folder-with-permissions-of-a-new-user-tf4371934.html#a12463159
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to