我需要当我的安装程序找到以前的安装程序时,它会在重新安装之前将其全部删除。到目前为止,我有这个代码:
<Product Id="GUID1" Name="MyName" Language="1033"
Version="1.0.0.0" Manufacturer="MyManufacturer" UpgradeCode="GUID2">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
<InstallExecuteSequence>
<RemoveExistingProducts Before="InstallInitialize" />
</InstallExecuteSequence>
<Feature Id="ProductFeature" Title="MyTitle" Level="1">
<ComponentGroupRef Id="MyFeatures" />
</Feature>
</Product>
但是当我运行安装程序时,我收到此消息:安装了此产品的另一个版本。此安装无法继续。(或类似的东西,我的窗户不是英文的)。
如何解决?