Ошибка пакета установщика Windows 7 2869 при установке обновленной версии

StackOverflow https://stackoverflow.com/questions/5056887

Вопрос

У меня есть приложение с версией №: 1.0.0.1, которая является обновлением до старой версии 1.0.0.0.

Когда я пытаюсь установить новую версию 1.0.0.1, когда моя система уже установлена старая версия, я Получение ошибки 2869.

Но если я удалю более старую версию вручную, и чем пытаюсь установить более новую версию, то она успешно устанавливается.

Я изменил код продукта для новой версии.Но не изменил код обновления.

Может кто-нибудь любезно дайте мне знать причину и исправить для этого?

Это было полезно?

Решение

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.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top