Mar 20, 2023
06:25 AM
In the article provided - Windows reports the deletion of the TEMP directory as an Issue and provides workaround solutions for it. I do not read the article that the deletion of the TEMP directory is an intended feature and something that should be supported by 3rd party applications.
An Installshield compressed setup.exe requires the TEMP directory to extract files during installation (this was different in earlier versions of Installshield such as IS2015).
The solution here would be to follow Microsoft's suggestions for the workaround. Alternatively if this is a common issue for the environment that your application installs into - using an uncompressed build release would remove the need to extract the files to the TEMP directory.
... View more
Mar 10, 2023
04:24 AM
Perfect solution - and one that I would have suggested. If further down the line things become more complex and more features are introduced which are optional and don't require the shared files - you can look into creating conditions for the Feature C to only install if specific other features are selected.
... View more
Mar 08, 2023
03:53 AM
Are the common files installing to the same directory? If so this would break Component Rules - https://learn.microsoft.com/en-us/windows/win32/msi/what-happens-if-the-component-rules-are-broken
"If two components have a resource under the same name and location and both components are installed into the same folder, then the removal of either component removes the common resource, which damages the remaining component."
... View more
Mar 07, 2023
07:35 AM
Installshield is designed to create Installers for Windows OS - it isn't tested to create installers that support emulators on other OS types. In addition Installshield 12 was End-of-lifed 12 years ago in 2010, so again support for this will be limited.
I did find the following article on an ubuntu forum which may help configure Wine to do what you want. https://ubuntuforums.org/showthread.php?t=2322134
... View more
Mar 06, 2023
03:18 AM
The -6138 error can be seen when the setup.rul has been removed from the project - but there is still something within your project which is referencing the script file.
This could be a custom action which expects the setup.rul to be present to run.
Check through your project to make sure that nothing has been orphaned and is still attempting to reference the Installscript file.
... View more
Mar 03, 2023
05:31 AM
As the previous versions were not following upgrade best practices - its not possible to determine their behaviour. It is possible to identify that the Major Upgrades that you were previously creating were not incrementing the Product Version correctly. I understand that previous versions were working using the method of using the 4th ProductVersion field - however as windows installer does not read the 4th field - this is not seen as a change. Therefore the criteria of a Major Upgrade have not been met - and its possible that the "RemoveExistingProducts" standard action is not being started correctly as no upgrade has been identified.
We can only assume that it is lucky that you have not encountered issues sooner.
If you test increasing the productversion using only the first 3 fields to 7.2.1 - does this correct the behaviour or is the issue still present?
... View more
Mar 02, 2023
04:53 AM
Windows Installer doesn't read the 4th value in a ProductVersion property, it will only read the first 3. This would mean that during the upgrade Windows Installer will not recognise the increase in the ProductVersion number and therefore upgrade rules are not being followed.
There is more information the ProductVersion property here: https://learn.microsoft.com/en-us/windows/win32/msi/productversion
Try creating your Major Upgrade by upgrading from 7.2.0.1 to 7.2.1.0
In addition make sure that you are correctly creating a Major Upgrade by following the steps provided here: https://community.flexera.com/t5/InstallShield-Knowledge-Base/Create-a-Major-Upgrade/ta-p/3879
Hope this helps.
... View more
Mar 01, 2023
08:23 AM
1 Kudo
Installshield 2022 R2 includes zlib 1.2.13 Hope this helps, Stuart
... View more
Mar 01, 2023
05:02 AM
Sorry for any confusion - the name of MSI is taken from the ProductName property. Changing this is not supported for a Windows Installer Minor upgrade.
... View more
Feb 28, 2023
05:02 AM
There are quite a few limitations that Minor Upgrades can introduce due to how the Windows Installer Engine behaves. Unfortunately changing the name of the .msi package is not a supported feature for Minor Upgrades, and therefore a Major Upgrade would be required.
The following article if really useful and shows what is and is not supported for each of the upgrade types: https://docs.revenera.com/installshield28helplib/helplibrary/MajorMinorSmall.htm?Highlight=productname
... View more
Feb 17, 2023
07:16 AM
This CVE reports that only apps that call zlib's 'inflateGetHeader' method are affected.
Neither InstallShield nor other third party components used in InstallShield are calling this method and therefore Installshield is not affected by this vulnerability.
I hope this helps.
... View more
Feb 10, 2023
03:10 AM
You would need to create a new Dialog for your suite installer which requests this information from your customer - this information can then be stored in a property by the suite installer, and passed to your MSI's via a command line. You should see the Property to populate in the control settings in the Wizard Interface of your suite project.
If the command line for each MSI is authored correctly this would pre-populate the information in the Installation process for your customers. Alternatively you can use the command line to instruct the MSI's to install silently using the property information that you provide.
Information on how to pass property's from the suite to the MSI package can be found here: https://community.flexera.com/t5/InstallShield-Knowledge-Base/Passing-a-Suite-Property-to-Command-Line-of-Package/ta-p/4378
... View more
Feb 03, 2023
03:52 AM
1 Kudo
I have seen Anti-Virus also cause this error - its possible that there are files specific to this installer which are causing an issue with your AV during the build process. If possible try pausing your Anti-Virus to test the build and see if this alters the behavior.
... View more
Feb 01, 2023
07:56 AM
Take a look at the following knowledge base article which explains possible reasons and resolutions for this build error: https://community.flexera.com/t5/InstallShield-Knowledge-Base/Build-Error-1001/ta-p/3628
... View more
Jan 31, 2023
04:51 AM
Rather than attempting to dynamically alter the combo box, could you create duplicate dialogs which are displayed depending on what the user selects?
... View more
Latest posts by shunt
Subject | Views | Posted |
---|---|---|
18 | Mar 20, 2023 06:25 AM | |
189 | Mar 10, 2023 04:24 AM | |
235 | Mar 08, 2023 03:53 AM | |
184 | Mar 07, 2023 07:35 AM | |
253 | Mar 06, 2023 03:18 AM | |
237 | Mar 03, 2023 05:31 AM | |
266 | Mar 02, 2023 04:53 AM | |
163 | Mar 01, 2023 08:23 AM | |
157 | Mar 01, 2023 05:02 AM | |
186 | Feb 28, 2023 05:02 AM |
Activity Feed
- Posted Re: The setup.exe doesn't create the system %temp% folder if it doesn't exist. on InstallShield Forum. Mar 20, 2023 06:25 AM
- Posted Re: How to share files between Features in InstallShield MSI InstallScript project? on InstallShield Forum. Mar 10, 2023 04:24 AM
- Posted Re: How to share files between Features in InstallShield MSI InstallScript project? on InstallShield Forum. Mar 08, 2023 03:53 AM
- Posted Re: InstallShield's setup.exe does not see genuine USB stick when run with Wine on Ubuntu 22.04 on InstallShield Forum. Mar 07, 2023 07:35 AM
- Got a Kudo for Re: CVE-2022-37434 in MSI build with InstallShield 2022 R1. Mar 06, 2023 04:34 AM
- Posted Re: Setup.rul is required for the project. on InstallShield Forum. Mar 06, 2023 03:18 AM
- Posted Re: MSI Upgrade leaves two records in Apps and Features on InstallShield Forum. Mar 03, 2023 05:31 AM
- Posted Re: MSI Upgrade leaves two records in Apps and Features on InstallShield Forum. Mar 02, 2023 04:53 AM
- Posted Re: CVE-2022-37434 in MSI build with InstallShield 2022 R1 on InstallShield Forum. Mar 01, 2023 08:23 AM
- Posted Re: Product name in Add/Remove Programs not updated on minor upgrade on InstallShield Forum. Mar 01, 2023 05:02 AM
- Posted Re: Product name in Add/Remove Programs not updated on minor upgrade on InstallShield Forum. Feb 28, 2023 05:02 AM
- Got a Kudo for Re: InstallShield 2019 Build error 1001. Feb 24, 2023 01:56 AM
- Posted Re: CVE-2022-37434 in MSI build with InstallShield 2022 R1 on InstallShield Forum. Feb 17, 2023 07:16 AM
- Posted Re: Suite/Advanced UI to achieve getting inputs of all MSI's before installation begins on InstallShield Forum. Feb 10, 2023 03:10 AM
- Posted Re: InstallShield 2019 Build error 1001 on InstallShield Forum. Feb 03, 2023 03:52 AM
- Posted Re: InstallShield 2019 Build error 1001 on InstallShield Forum. Feb 01, 2023 07:56 AM
- Posted Re: Hide Feature in Basic MSI during runtime on InstallShield Forum. Jan 31, 2023 04:51 AM
- Posted Re: Application should run immediately once installed/ once monitor logged in on InstallShield Forum. Jan 24, 2023 05:46 AM
- Posted Re: Prerequisite condition for VC++ x86 runtime on InstallShield Forum. Jan 18, 2023 09:02 AM
- Posted Re: Installation of perticular version of Installshield on InstallShield Forum. Jan 17, 2023 07:51 AM