I have a requirement as described below:There are two features F1 and F2 in my msi.During a major upgrade, user should be able to select either F1 or F2 for upgrade. If he selects F1, F1 should upgrade and F2 should remain with old version.Is this po...
Hi,When a setup.exe runs in minor upgrade, the first message box to be displayed is "This setup will perform an upgrade of . Do you want to continue?” . This text is not seen anywhere in the ism or msi. Is it possible to edit this text?Thanks,Sooraj
Hi,Our basic MSI project has two merge modules. We are developing the new version (6.1) which supports the below upgrades:4.0 to 6.1, 5.0 to 6.1 (Major upgrades)6.0 to 6.1 (Minor upgrade)The major upgrades to 6.1 are working perfectly fine but one of...
HI,We are registering our windows services using the .Net installer class arguments in the component settings. We do not want the service to be registered during a minor upgrade. I tried setting the component condition to "NOT IS_MINOR_UPGRADE". Even...
The installer is getting stuck for about 30 seconds at 0% progress in Setup Progress dialog (After clicking Install button in Ready to Install dialog). The Log file captures the below entries during this delay in Windows Server 2008 and 2012:MSI (s) ...
The issue was that few dynamic components were there in my 6.0 msi. In 6.1, the GUID of these components got changed. I had to edit the msi after building to update these component GUIDs back to 6.0 GUID's to make minor upgrade work. I used "C:\Progr...
I fixed this by editing the msi using "C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin\MsiDb.exe" to add "NOT IS_MINOR_UPGRADE" condition to the .Commit, .Install and .Rollback custom actions to prevent .net installer class getting called dur...
Thanks for the reply.I tried removing the system restore. But the delay is still there. On further analysis I found that the delay is there when I use a signed msi. Unsigned msi installs without delay. Signed msi installtion introduces a delay betwee...