防止在主要升级期间删除和重新创建 MSMQ 队列
我有一个创建 MSMQ 消息队列的安装程序。在重大升级期间,我注意到队列被删除并重新安装。有什么建议可以避免这种情况发生吗?
我目前计划在 InstallInitialize 之后删除现有产品
<RemoveExistingProducts After="InstallInitialize"/>
I have an installer which creates MSMQ message queues. During a major upgrade I am noticing that the queues are getting removed and reinstalled. Any suggestions to avoid this from happening?
I am currently scheduling remove existing products after InstallInitialize
<RemoveExistingProducts After="InstallInitialize"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看包含消息队列的组件。它可能正在升级,导致队列升级。
Look at the Component that contains the Message Queue. It is probably getting upgraded which causes the queue to get upgraded.