Jan 25, 2013
06:49 AM
CHANDINATHREDDY wrote: Set the visible to false that will hide the location That does not change accordingly with the selected feature. I found out the solution: we must use the SetProperty event on the Tree to set a property.
... View more
Jun 24, 2016
08:56 AM
I had this problem too. I wrote a c# assembly to do all the things that InstallShield was useless at, including deleting a web application, for which here is the code (which I call from InstallScript)... [CODE] [ComVisible(true)] public bool DeleteWebApplication(string webSite, string webApplication, ref string errorMsg) { // The result. bool result = false; try { // Get the server manager. ServerManager sm = new ServerManager(); // Find the virtual directory. Site site = sm.Sites[webSite]; // "Default Web Site" Application app = site.Applications[string.Format("/{0}", webApplication)]; // "iManager" if (app != null) { // It does exist, let's delete it. site.Applications.Remove(app); sm.CommitChanges(); } // Success. result = true; } catch (Exception ex) { // Failure to get property, fill in the error message. errorMsg = ex.Message; } return result; }[/CODE]
... View more
Jan 10, 2013
09:58 AM
What do you mean by multi-feature instance? Actually, perhaps the first thing i should have picked up on is that you seem to be using dynamic file linking. Because of this, you can only use minor upgrades if you use patch optimization. This is because dynamic file linking creates components on the fly at build time. The component GUIDs must match up with those of the package being upgraded in order for the costing operations to know what is going on. Patch optimization points the build at the previous package so that it can properly recycle the old component GUIDs.
... View more
Jan 08, 2013
02:04 PM
The InstallShield task for MSBuild includes a ProductVersion parameter, which you can use to specify the product version through MSBuild. This parameter is exposed as the property InstallShieldProductVersion when the default targets file is used.
... View more
Jan 04, 2013
04:07 AM
rrinblue22 wrote: you can still run the custom action when user clicks on "Next" button on a dialog.... its just that you need to have this executed in Install Execute sequence to retain the changed product name... Great! That did the trick! Thanks a lot. ... Moving to the next step!
... View more
Latest posts by nunocenteio
Subject | Views | Posted |
---|---|---|
976 | Jan 25, 2013 06:49 AM | |
2662 | Jan 24, 2013 09:33 AM | |
5477 | Jan 16, 2013 02:40 AM | |
2095 | Jan 10, 2013 09:39 AM | |
2095 | Jan 09, 2013 09:47 AM | |
2095 | Jan 09, 2013 09:30 AM | |
5593 | Jan 09, 2013 07:58 AM | |
3464 | Jan 07, 2013 10:58 AM | |
1330 | Jan 04, 2013 04:07 AM | |
1330 | Jan 04, 2013 02:35 AM |
Activity Feed
- Posted Re: Use MsiSelectionTreeSelectedFeature in CustomSetup dialog on InstallShield Forum. Jan 25, 2013 06:49 AM
- Posted Use MsiSelectionTreeSelectedFeature in CustomSetup dialog on InstallShield Forum. Jan 24, 2013 09:33 AM
- Tagged Use MsiSelectionTreeSelectedFeature in CustomSetup dialog on InstallShield Forum. Jan 24, 2013 09:33 AM
- Tagged Use MsiSelectionTreeSelectedFeature in CustomSetup dialog on InstallShield Forum. Jan 24, 2013 09:33 AM
- Posted Not removing IIS Application on uninstall on InstallShield Forum. Jan 16, 2013 02:40 AM
- Tagged Not removing IIS Application on uninstall on InstallShield Forum. Jan 16, 2013 02:40 AM
- Tagged Not removing IIS Application on uninstall on InstallShield Forum. Jan 16, 2013 02:40 AM
- Posted Re: Minor upgrade doesn't replace files? on InstallShield Forum. Jan 10, 2013 09:39 AM
- Posted Re: Minor upgrade doesn't replace files? on InstallShield Forum. Jan 09, 2013 09:47 AM
- Posted Re: Minor upgrade doesn't replace files? on InstallShield Forum. Jan 09, 2013 09:30 AM
- Posted Minor upgrade doesn't replace files? on InstallShield Forum. Jan 09, 2013 07:58 AM
- Tagged Minor upgrade doesn't replace files? on InstallShield Forum. Jan 09, 2013 07:58 AM
- Tagged Minor upgrade doesn't replace files? on InstallShield Forum. Jan 09, 2013 07:58 AM
- Tagged Minor upgrade doesn't replace files? on InstallShield Forum. Jan 09, 2013 07:58 AM
- Posted Overriding ProductVersion with MSBuild on InstallShield Forum. Jan 07, 2013 10:58 AM
- Tagged Overriding ProductVersion with MSBuild on InstallShield Forum. Jan 07, 2013 10:58 AM
- Posted Re: Basic MSI - Change ProductName in runtime on InstallShield Forum. Jan 04, 2013 04:07 AM
- Posted Re: Basic MSI - Change ProductName in runtime on InstallShield Forum. Jan 04, 2013 02:35 AM
- Posted Basic MSI - Change ProductName in runtime on InstallShield Forum. Jan 03, 2013 09:52 AM
- Tagged Basic MSI - Change ProductName in runtime on InstallShield Forum. Jan 03, 2013 09:52 AM