如何在Wix中设置MSMQ队列创建的用户权限
作为 Wix 安装的一部分,我尝试使用 MsmqExtension 创建 MSMQ 专用队列:
<msmq:MessageQueue Id='myQueue' Label='My Queue' Transactional='yes' PathName='[MESSAGE_QUEUE_NAME]'/>
由于我正在安装的 Windows 服务在与执行安装的用户不同的用户下运行,我不确定它会是能够读取和写入此专用队列,并且扩展架构不提供设置特定用户的选项。有没有办法解决这个问题,或者我是否必须将队列创建实现为自定义操作才能获得这种灵活性?
As part of a Wix installation I'm trying to create an MSMQ private queue using the MsmqExtension:
<msmq:MessageQueue Id='myQueue' Label='My Queue' Transactional='yes' PathName='[MESSAGE_QUEUE_NAME]'/>
As the windows service I'm installing is running under a different user to that which is performing the install I'm not sure that it will be able to read and write to this private queue and the extensions schema doesn't give the option to set specific users. Is there a way round this or would I have to implement the queue creation as a custom action to have this flexibility?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 MessageQueuePermission 元素来实现此目的。
Use MessageQueuePermission element to achieve this.