Pergunta

Eu tenho um aplicativo com a versão No: 1.0.0.1, que é uma atualização para a versão mais antiga 1.0.0.0.

.

Quando tento instalar a nova versão 1.0.0.1, quando meu sistema já tem a versão mais antiga instalada, eu sou Obtendo o erro 2869.

Mas se eu desinstalar a versão mais antiga manualmente e tentar instalar a versão mais recente, ela se instala com sucesso.

Eu mudei o código do produto para nova versão.Mas não alterou o código de atualização.

Alguém pode querer saber saber o motivo e consertar isso?

Foi útil?

Solução

In the MSI ProductVersion property only the first 3 fields are significant when comparing versions using the major upgrade logic. So in your case MSI will consider 1.0.0.1 and 1.0.0.0 to both be 1.0.0. FindRelatedProducts will therefore not detect this situation as an upgrade.

The way I approach this is to create a 'packed' version where the 3rd and 4th fields are combined into one using, say (4096*f3 + f4), but this will behove you never to have a 4th field (build number) greater than 4096, and a 3rd field no bigger than 15, since 0xFFFF is the maximum for a version field.

This allows us to perform major upgrades between individual nightly builds, not just service packs, without requiring a bootstrapper to achieve a minor upgrade, and we can have a new productcode for every build so there's no need to have to remember to update it manually when the need arises.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top