tags:

views:

22

answers:

1

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"/>
A: 

Look at the Component that contains the Message Queue. It is probably getting upgraded which causes the queue to get upgraded.

Rob Mensching
Is there a way to prevent a component from getting upgraded?
KevM
Not if you schedule the RemoveExistingProducts that early.
Rob Mensching