May 25, 2022
01:16 AM
Please check the jpg.
... View more
May 23, 2022
05:36 AM
InstallShield Help:
https://docs.revenera.com/installshield27helplib/helplibrary/SetupPrereqEditor.htm?Highlight=InstallShield%20Prerequisite%20Editor%20Reference
... View more
May 23, 2022
05:28 AM
1 Kudo
Use "Dynamic File Linking Box"
https://docs.revenera.com/installshield26helplib/helplibrary/IDlgDynLinkP.htm?Highlight=Dynamic%20File%20Link%20Settings%20Dialog%20Box
... View more
Jan 13, 2022
06:13 AM
"The only sure way to downgrade an installer is to remove the existing version before the installer begins." How to remove the existing version before the installer begins, please?
... View more
Dec 13, 2021
07:31 AM
Edit direct uninstall key in registry.
... View more
Dec 13, 2021
07:16 AM
What about "Nested MSI" in package ?
... View more
Dec 13, 2021
06:06 AM
Hi anstoots, we have copied all of prereqs. folders from developer machine to SAB-machine. This way we have the same prereqs. versions on both machines.
... View more
Dec 09, 2021
06:42 AM
It shows, where to put/activate setup languages.
... View more
Dec 09, 2021
06:34 AM
Please show at the att. picture.
... View more
Dec 03, 2021
08:48 AM
1 Kudo
I can offer you the following solution: Your features NewFeature1 (A) and NewFeature1 (B) are without any level-condition (!) Both of them are visible and have installLevel=150 (!) RadioGroup Property SELECTFEATURE = 0 RadioA = A RadioB = B you have ISScript - Functions ///////////////////////////////////////////////////////////// // Put this CA after NEXT of Radio-Dialog function SetFeatureCondition(hMSI) NUMBER nBuffer; STRING svProp; begin nBuffer=255; MsiGetProperty(hMSI,"SELECTFEATURE",svProp,nBuffer); if(svProp=="A") then SetFeatureStrCondition(hMSI,"NewFeature1",SW_SHOW); SetFeatureStrCondition(hMSI,"NewFeature2",SW_HIDE); endif; if(svProp=="B") then SetFeatureStrCondition(hMSI,"NewFeature2",SW_SHOW); SetFeatureStrCondition(hMSI,"NewFeature1",SW_HIDE); else endif; end; ///////////////////////////////////////////////////////////// function SetFeatureStrCondition(hMSI,szFeature,nShowHide) NUMBER hDB; NUMBER hView, hRecord; NUMBER nResult, nBuffer; NUMBER nVisible; STRING szName; begin hDB=MsiGetActiveDatabase(hMSI); // open view table MsiDatabaseOpenView(hDB, "SELECT * FROM Feature WHERE Feature='"+szFeature+"'", hView); MsiViewExecute(hView, NULL); MsiViewFetch(hView, hRecord); nBuffer = 255; MsiRecordGetString (hRecord, 1, szName, nBuffer); nVisible = MsiRecordGetInteger(hRecord, 5); //MessageBox("Operating on feature: " + szName, INFORMATION); // löschen nResult = MsiViewModify(hView, 6, hRecord); if(nShowHide==SW_HIDE) then // Set to to HIDDEN nResult=MsiRecordSetInteger(hRecord, 5, 0); // Set LEVEL to 150 nResult=MsiRecordSetInteger(hRecord, 6, 150); else // Set to to SHOW nResult=MsiRecordSetInteger(hRecord, 5, 2);//8); // Set LEVEL to 1 nResult=MsiRecordSetInteger(hRecord, 6, 1); // Set Attributes to 0 //nResult=MsiRecordSetInteger(hRecord, 8, 1); endif; // can only temporarily modify running .msi database nResult = MsiViewModify(hView, MSIMODIFY_INSERT_TEMPORARY, hRecord); MsiCloseHandle(hRecord); MsiViewClose(hView); MsiCloseHandle(hDB); end;
... View more
- Tags:
- InstallShield 2021
Dec 03, 2021
05:22 AM
Hi JosephV, The conditional setting of installation level of a feature ends after UserInterface\CostFinalize You can proof it calling your test setup setup.exe /V"SETUPOPTION=A" This way you can see feature "A" in feature dialog.
... View more
Sep 28, 2021
05:50 AM
Hello, I am building BASIC-MSI setup with PowerShell custom actions. Some of them need database (msi) handle. How Do I get this handle, being within PS1 CA? In a simple ISScript CA the handle is hMSI. Thanks for help
... View more
Labels
- Labels:
-
InstallShield 2020
Sep 28, 2021
05:47 AM
Hello, why posted messages/questions have not any label? I choose always one.
... View more
Labels
- Labels:
-
InstallShield 2020
Sep 28, 2021
05:39 AM
Hello, I am building BASIC-MSI setup with PowerShell custom actions. Some of them need database (msi) handle. How Do I get this handle, being within PS1 CA? In a simple ISScript CA the handle is hMSI. Thanks for help
... View more
Labels
- Labels:
-
InstallShield 2020 R3
Sep 14, 2021
05:30 AM
New Label InstallShield 2021 label-name/installshield 2021
... View more
Labels
Latest posts by roman2
Subject | Views | Posted |
---|---|---|
449 | May 25, 2022 01:16 AM | |
463 | May 23, 2022 05:36 AM | |
148 | May 23, 2022 05:28 AM | |
1387 | Jan 13, 2022 06:13 AM | |
257 | Dec 13, 2021 07:31 AM | |
360 | Dec 13, 2021 07:16 AM | |
577 | Dec 13, 2021 06:06 AM | |
821 | Dec 09, 2021 06:42 AM | |
825 | Dec 09, 2021 06:34 AM | |
520 | Dec 03, 2021 08:48 AM |
Activity Feed
- Posted Re: Add VC142 vc_redist.x86.exe as prerequisite on InstallShield Forum. May 25, 2022 01:16 AM
- Posted Re: Add VC142 vc_redist.x86.exe as prerequisite on InstallShield Forum. May 23, 2022 05:36 AM
- Got a Kudo for Re: How to find all files matching a file specification in a folder?. May 23, 2022 05:29 AM
- Posted Re: How to find all files matching a file specification in a folder? on InstallShield Forum. May 23, 2022 05:28 AM
- Posted Re: Allow upgrades and downgrades at will on InstallShield Forum. Jan 13, 2022 06:13 AM
- Kudoed Security Advisory: Log4j Java Vulnerability (CVE-2021-4104, CVE-2021-45046, CVE-2021-44228) for cvirata. Dec 16, 2021 06:43 AM
- Kudoed CVE-2021-44228: Log4j vulnerability impact on InstallShield for cvirata. Dec 16, 2021 06:42 AM
- Posted Re: I want to change Application Name in Add or Remove Programmes. on InstallShield Forum. Dec 13, 2021 07:31 AM
- Posted Re: How to include prerequisites in installshield msi file on InstallShield Forum. Dec 13, 2021 07:16 AM
- Posted Re: InstallShield 2021 standalone build prerequisites on InstallShield Forum. Dec 13, 2021 06:06 AM
- Posted Re: Dutch language support in Installshield professional edition on InstallShield Forum. Dec 09, 2021 06:42 AM
- Posted Re: Dutch language support in Installshield professional edition on InstallShield Forum. Dec 09, 2021 06:34 AM
- Tagged Re: Mutually exclusive feature install not working as expected on InstallShield Forum. Dec 07, 2021 01:58 AM
- Got a Kudo for Re: Mutually exclusive feature install not working as expected. Dec 03, 2021 12:13 PM
- Posted Re: Mutually exclusive feature install not working as expected on InstallShield Forum. Dec 03, 2021 08:48 AM
- Posted Re: Mutually exclusive feature install not working as expected on InstallShield Forum. Dec 03, 2021 05:22 AM
- Posted BASIC-MSI: CA Powershell, get database handle on InstallShield Forum. Sep 28, 2021 05:50 AM
- Posted InstallShield Forum Labels on InstallShield Forum. Sep 28, 2021 05:47 AM
- Posted BASIC-MSI: CA Powershell, get database handle on InstallShield Forum. Sep 28, 2021 05:39 AM
- Posted New Label InstallShield 2021 on InstallShield Forum. Sep 14, 2021 05:30 AM