Aug 22, 2019
08:56 PM
Parameter SRCDIR^"C:\\MySourceDir\\OrangeBanner.bmp" is wrong. You are trying to append SRCDIR with another full path.
DialogSetInfo(DLG_INFO_ALTIMAGE,SRCDIR^"C:\\MySourceDir\\OrangeBanner.bmp");
You should be able to change the image as below. Make sure image is added to support files:
DialogSetInfo(DLG_INFO_ALTIMAGE, SUPPORTDIR ^ "OrangeBanner.bmp", TRUE);
For more information, refer below example:
https://helpnet.flexerasoftware.com/installshield21helplib/Subsystems/installshield21langref/helplibrary/LangrefDialogSetInfo_example.htm#langref_appendixa_3241381926_1028486
... View more
Aug 22, 2019
06:44 AM
You can refer below links
https://helpnet.flexerasoftware.com/installshield23helplib/helplibrary/SETUPEXEDIR.htm
https://community.flexera.com/t5/InstallShield-Knowledge-Base/Variable-SETUPEXEDIR-returns-blank-when-running-a-Patch-Update/ta-p/4623
... View more
Aug 21, 2019
08:42 AM
I believe you are using either BasicMsi or InstallScript MSI project as property manager view is available in those projects only.
you can use MsiGetProperty and MsiSetProperty methods to access properties from script. You can refer below link
https://helpnet.flexerasoftware.com/installshield23helplib/helplibrary/IHelpIScriptWIProperty.htm
... View more
Aug 19, 2019
08:55 PM
What kind of executable is that(standard exe installation executable like .net)? Make sure your executable support /norestart (or other related parameter) to suppress the restart. Does it prompt for restart when you execute the command manually from command line?
... View more
Aug 16, 2019
10:18 PM
Directly set IFX_SETUP_TITLE to desired value as below.
IFX_SETUP_TITLE = "Crostini Plus";
Do not use Sprintf statement as it appends "InstallWizard" string.
... View more
Aug 16, 2019
01:08 AM
You can refer below
https://helpnet.flexerasoftware.com/installshield21helplib/Subsystems/installshield21langref/helplibrary/LangrefSYSINFO.htm
SYSINFO.nSystemDefaultUILangID
Value indicates the installed operating system language's ID.
SYSINFO.nSystemLangID
Value indicates the system language's ID.
SYSINFO.nUserLangID
Value indicates the user language's ID.
... View more
Aug 15, 2019
10:37 PM
Yes, you can. The Template Summary property determines whether an .msi package is a 32-bit package or a 64-bit package, not operating system where currently installshield is running. You can refer below link for more details
https://helpnet.flexerasoftware.com/installshield25helplib/helplibrary/Targeting64Bit-MSI.htm
... View more
Aug 15, 2019
10:32 PM
For any particular dialog: hwndDlg = CmdGetHwndDlg("<DialogName>"); SetWindowText(hwndDlg, "Custom Title");
OR
For all dialogs:
try setting IFX_SETUP_TITLE in your script as mentioned in the below article
https://community.flexera.com/t5/InstallShield-Knowledge-Base/How-To-Set-Product-Name-During-Runtime-For-InstallScript-Project/ta-p/4155
... View more
Aug 15, 2019
12:42 PM
Files in Support Files|Language Independent (or a language specific area) are streamed into the ISSetupFile table when building an MSI package. If the set of files in this view changes between base MSI and upgraded MSI, the differences will be included in the resulting patch built by patchwiz.dll framework.
I think final view of the ISSetupFile table (includes all the files for Lang independent and specific files for selected\default language) for both Update.exe and full installer should be available in the temp folder at runtime. Could you please cross check one more time.
... View more
Aug 15, 2019
07:54 AM
2 Kudos
StrTrim does not return string, hence modify
exampleString = StrTrim(exampleString );
to
StrTrim(exampleString ); // exampleString passed as reference, hence changes will be reflected back
You can refer below link for return values of StrTrim method
https://helpnet.flexerasoftware.com/installshield22helplib/Subsystems/installshield22langref/helplibrary/StrTrim.htm?
... View more
Aug 14, 2019
08:55 PM
1 Kudo
There is no built-in method to remove trailing spaces alone. You can use StrTrim to remove both the leading and trailing spaces and tabs from a string
or
You can write your own method as your requirement. You can find example here.
https://community.flexera.com/t5/InstallShield-Knowledge-Base/String-Indexing-Example/ta-p/4526
... View more
Aug 14, 2019
06:00 AM
Can you refer below KB (talks about disabling 'Next'button based on some condition) and see if it works for you
https://community.flexera.com/t5/InstallShield-Knowledge-Base/How-to-handle-Navigation-Controls-using-Checkbox-property-in/ta-p/106489
... View more
Aug 14, 2019
12:02 AM
Make sure 'Text' property for your banner control on custom dialog point to "@@10552;200"
... View more
Aug 13, 2019
11:46 PM
1 Kudo
Use CtrlSetText command with control identifier value (select ControlId_50, and ControlId_51 and refer properties) as parameter to set custom text for your controls as below. case DLG_INIT: hwndDlg = CmdGetHwndDlg("FirstDialog"); SdGeneralInit("FirstDialog", hwndDlg, 0, ""); CtrlSetText("<CustomDialog Name>",<Control Identifier 50 value>,<szMsg >); CtrlSetText("<CustomDialog Name>",<Control Identifier 51 value>,<szTitle>);
... View more
Aug 13, 2019
11:34 PM
One way you can do this from your script as below
case DLG_INIT: hwndDlg = CmdGetHwndDlg("<custom DialogName">); SetWindowText(hwndDlg, "Custom Title");
... View more
Latest posts by Varaprasad
Subject | Views | Posted |
---|---|---|
520 | Mar 09, 2023 11:26 PM | |
650 | Mar 06, 2023 10:01 PM | |
364 | Sep 03, 2020 07:05 AM | |
265 | Sep 03, 2020 06:57 AM | |
304 | Sep 03, 2020 06:52 AM | |
357 | Sep 03, 2020 06:46 AM | |
260 | Sep 03, 2020 06:40 AM | |
309 | Sep 03, 2020 06:32 AM | |
275 | Sep 03, 2020 06:26 AM | |
4031 | Jan 10, 2020 02:42 AM |
Activity Feed
- Posted Re: Security patch for the possible privileged escalation scenarios identified in InstallShield on InstallShield Knowledge Base. Mar 09, 2023 11:26 PM
- Posted CVE-2023-29080: Security patch for the possible privileged escalation scenarios identified in InstallShield on InstallShield Knowledge Base. Mar 06, 2023 10:01 PM
- Posted Build Warning 9583 on InstallShield Knowledge Base. Sep 03, 2020 07:05 AM
- Posted Build Error 9582 on InstallShield Knowledge Base. Sep 03, 2020 06:57 AM
- Posted Build Error 9581 on InstallShield Knowledge Base. Sep 03, 2020 06:52 AM
- Posted Build Warning 9580 on InstallShield Knowledge Base. Sep 03, 2020 06:46 AM
- Posted Build Error 9579 on InstallShield Knowledge Base. Sep 03, 2020 06:40 AM
- Posted Build Warning 9578 on InstallShield Knowledge Base. Sep 03, 2020 06:32 AM
- Posted Build Error 9577 on InstallShield Knowledge Base. Sep 03, 2020 06:26 AM
- Posted Re: InstallShield 2019 R3 download on InstallShield Forum. Jan 10, 2020 02:42 AM
- Posted Re: Visual C++ 2019 x64 Prerequisite fails when Visual C++ 2017 x64 is installed on InstallShield Forum. Oct 22, 2019 11:00 AM
- Posted Re: Visual C++ 2019 x64 Prerequisite fails when Visual C++ 2017 x64 is installed on InstallShield Forum. Oct 22, 2019 06:58 AM
- Posted Re: How to add 3rd Party( Microsoft) msi to the list of Redistributables on InstallShield Forum. Oct 04, 2019 08:48 AM
- Got a Kudo for Re: Message box with a return code. Oct 03, 2019 05:45 PM
- Posted Re: Access support files in powershell actions on InstallShield Forum. Oct 03, 2019 11:04 AM
- Posted Re: Is it possible to let a powershell action script abort an installation on InstallShield Forum. Oct 03, 2019 10:37 AM
- Posted Re: How to add 3rd Party( Microsoft) msi to the list of Redistributables on InstallShield Forum. Oct 03, 2019 10:00 AM
- Posted Re: Message box with a return code on InstallShield Forum. Oct 03, 2019 09:35 AM
- Posted Re: Message box with a return code on InstallShield Forum. Oct 02, 2019 09:57 AM
- Posted Re: A way for creating a new acount without accout Administrator(Lisence Center). on InstallShield Forum. Sep 25, 2019 08:21 AM