Dec 23, 2014
03:27 AM
Hello everyone, I am trying to register TLB files from installer. For that, i am using the InstallScript LaunchAppAndWait function, that calls regtlibv12.exe to register TLB files. But, even though i have used LAAW_OPTION_HIDDEN, still I am getting the cmd popup (though momnetarily). Any idea on how can I suppress this prompt from appearing? Thanks in advance, Shodhan
... View more
Labels
- Labels:
-
InstallShield 2011
Dec 05, 2014
06:31 AM
jay0804 wrote: In the first argument of Sprintfmsilog(), you have to specify Format specifier like as below SprintfMsiLog("LAAW_TEST: %d ", LaunchAppAndWait (szProgram,szcmdline,WAIT|LAAW_OPTION_HIDDEN)); Okay. I'll try that. Btw, is %d for INTs and %s for strings? If yes, is it ok if I put %s instead of %d, or is it so that LAAW returns only an INT ?
... View more
Dec 05, 2014
05:11 AM
Hello, How can I log the output of LaunchAppAndWait to the default log file that is created after every installation? I tried this: SprintfMsiLog("LAAW_TEST:", LaunchAppAndWait (szProgram,szcmdline,WAIT|LAAW_OPTION_HIDDEN)); But it didn't print any thing except this: "1: LAAW_TEST: " Any help about this? Its a basic MSI project btw.. Thanks! 🙂
... View more
Labels
- Labels:
-
InstallShield 2011
May 28, 2014
06:42 AM
Hi, I have an installer, which, after either successful or unsuccessful or aborted installation, does not show the "Show the Windows Installer Log" message along with its check-box. What's strange is that it is not observed always, but only sometimes..! Any help would be appreciated. Thanks, Shodhan
... View more
Labels
- Labels:
-
InstallShield 2011
Feb 12, 2014
12:43 AM
Thanks DebbieL for your inputs! It really helped me! Best Regards, Shodhan
... View more
Feb 06, 2014
04:41 AM
You can probably add a major Upgrade item in your new installer and give Upgrade Code of the old installers, thereby, your new installer will uninstall both the old installers while installation. Or else, as a last resort you can also run a simple batch script (that would uninstall the previous installer) before starting the installation of new installer.
... View more
Jan 07, 2014
04:59 AM
Hi all, Normally, if we create a Component, its entry goes in the Component table. Here, I have come across one ism file in which, I can see few entries in the Component table but the corresponding components are not seen in Setup Design. So how did those entries get in the Component table? Will the files in those Components go on the system? Thanks in advance, Shodhan
... View more
- Tags:
- component table
Labels
- Labels:
-
InstallShield 2011
Dec 18, 2013
04:42 AM
Hi, I have not used InstallAnywhere, I use InstallShield 2011. But i did face similar problem some time back. It may happen that the files that are delivered may have the "Shared" attribute set to YES. Normally, if Shared=YES is kept, then the installer increments the count of that file in the registry: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SharedDLLs Check if that count is zero (if its not zero, that file will not be removed while uninstallation). As a work-around (in InstallShield), we add the entry of files and folders that we want to remove, in the RemoveFile table. I dont know what's there in InstallAnywhere, but this is what we do in InstallShield. Hope it helps. Thanks
... View more
Aug 01, 2013
01:51 AM
Hi, Just found few links related to that error code: Please refer these links http://www.wiki-errors.com/wiki-errors.php?wiki=0x8007007B http://support.microsoft.com/kb/929826 Hope it helps.
... View more
Aug 01, 2013
01:02 AM
Thanks for replying. The older MSI isn't broken, its just that a CA in it runs during uninstallation, that doesn't allow any higher versioned MSI (of same Upgrade code) to uninstall it. That's why major upgrade fails. Your steps 1 to 3 would help, no doubt, but, if we make another build of the old msi, we'll have to run 2 MSIs (the newly built older one and the newer one). But we just need to run the newer msi and it should take care of uninstallation of older MSI. As of now, we are running batch script to uninstall older MSI separately and then installing the newer MSI. I am looking for a something that I would do in the newer MSI itself that would take care of uninstall.
... View more
Jul 22, 2013
06:44 AM
I want to uninstall a lower version of a MSI while installing newer version. The problem here is that the newer MSI cannot perform an Upgrade as the older MSI has a custom action to that doesn't allow it to be uninstalled using Upgrades. Hence, I wrote a simple script to uninstall it: msiexec /x {Product Code} /qn Now, when I include this script in a Custom Action of the newer MSI, it throws an error saying that Another program is being installed. Please wait until that installation is complete, and then try installing this software again As a workaround for this, I did the following things: 1) Run the custom action in UI sequence, after Cost Finalize. But this wont work in case of silent installations. 2) When the custom action is run in Asynchronous mode, the 2 processes (viz., installation of newer MSI and uninstallation of older MSI) run independent of each other and it may happen that newer installer may finish installation first and then older will be uninstalled. This is also not expected. Please advice as to what can be done in this case. Thanks in advance, Shodhan
... View more
Labels
- Labels:
-
InstallShield 2011
Jul 22, 2013
01:48 AM
Try keeping Shared = YES
... View more
May 24, 2013
12:55 AM
Thanks TsungH...
... View more
May 20, 2013
04:28 AM
Thanks TsungH for that response. But would you elaborate more on your statement: "Component reference count was most likely incorrect". I would like to know what you meant by "incorrect".
... View more
Latest posts by shodhan
Subject | Views | Posted |
---|---|---|
2307 | Dec 23, 2014 03:27 AM | |
1442 | Dec 09, 2014 03:59 AM | |
1442 | Dec 05, 2014 06:31 AM | |
3154 | Dec 05, 2014 05:11 AM | |
5421 | May 28, 2014 06:42 AM | |
779 | Feb 12, 2014 12:43 AM | |
784 | Feb 06, 2014 04:41 AM | |
1998 | Jan 07, 2014 04:59 AM | |
2200 | Dec 18, 2013 04:42 AM | |
826 | Aug 01, 2013 01:51 AM |
Activity Feed
- Posted Cannot hide cmd popup from appearing on InstallShield Forum. Dec 23, 2014 03:27 AM
- Tagged Cannot hide cmd popup from appearing on InstallShield Forum. Dec 23, 2014 03:27 AM
- Tagged Cannot hide cmd popup from appearing on InstallShield Forum. Dec 23, 2014 03:27 AM
- Posted Re: Logging LAAW command in MSI log on InstallShield Forum. Dec 09, 2014 03:59 AM
- Posted Re: Logging LAAW command in MSI log on InstallShield Forum. Dec 05, 2014 06:31 AM
- Posted Logging LAAW command in MSI log on InstallShield Forum. Dec 05, 2014 05:11 AM
- Tagged Logging LAAW command in MSI log on InstallShield Forum. Dec 05, 2014 05:11 AM
- Tagged Logging LAAW command in MSI log on InstallShield Forum. Dec 05, 2014 05:11 AM
- Tagged Logging LAAW command in MSI log on InstallShield Forum. Dec 05, 2014 05:11 AM
- Tagged Logging LAAW command in MSI log on InstallShield Forum. Dec 05, 2014 05:11 AM
- Tagged Logging LAAW command in MSI log on InstallShield Forum. Dec 05, 2014 05:11 AM
- Posted Cannot see the "Show the Windows Installer Log" message and check-box at the end. on InstallShield Forum. May 28, 2014 06:42 AM
- Posted Re: Component entry seen in "Component table" but can't see them in "Setup Design" on InstallShield Forum. Feb 12, 2014 12:43 AM
- Posted Re: how to uninstall one product(I know it's GUID) in silent uninstall mode while instal on InstallShield Forum. Feb 06, 2014 04:41 AM
- Posted Component entry seen in "Component table" but can't see them in "Setup Design" on InstallShield Forum. Jan 07, 2014 04:59 AM
- Tagged Component entry seen in "Component table" but can't see them in "Setup Design" on InstallShield Forum. Jan 07, 2014 04:59 AM
- Posted Re: Uninstaller does not removes all files from installation directory sometimes. on InstallAnywhere Forum. Dec 18, 2013 04:42 AM
- Posted Re: Open the project in the new InstallShield not working on InstallShield Forum. Aug 01, 2013 01:51 AM
- Posted Re: Uninstalling MSI from installation of another MSI on InstallShield Forum. Aug 01, 2013 01:02 AM
- Posted Uninstalling MSI from installation of another MSI on InstallShield Forum. Jul 22, 2013 06:44 AM