Created setup.msi

  • Thread starter Thread starter Andrey_R
  • Start date Start date
A

Andrey_R

Hi! I need to change my add-ins. It don't install if old version exist on
computor. I change deployment property "RemovePreviosVersion=True" but it
has no effect. What property do I change?
 
It might help if you mention what development platform you're using and what
installer.

In general you must increment your program version, change the version in
the installer project, change the ProductCode but keep the UpgradeCode the
same, and if this is the VS installer then you also should set
DetectNewerInstallation = true.
 
Thanks, Ken. Helped change the ProductCode. My platform VSTO 2005 and use
..msi installer. But now I have message befor instalation that on my computor
has a newer version this product. But it has just an older version. What need
I change?
 
I find mistake. Thanks.

Ken Slovak - said:
It might help if you mention what development platform you're using and what
installer.

In general you must increment your program version, change the version in
the installer project, change the ProductCode but keep the UpgradeCode the
same, and if this is the VS installer then you also should set
DetectNewerInstallation = true.
 
Back
Top