Sep 04, 2019
11:36 PM
You are right, Express edition doesn't have option to change icon for setup.exe.
... View more
Sep 04, 2019
12:20 PM
Do you see this problem for all setups created in InstallShield 2018 or specific to one setup project?
... View more
Sep 04, 2019
11:59 AM
I don't think that this is possible. The standard icon for a MSI package is defined in the registry and is applicable to all MSI packages by the OS. You can change the default icon for MSI packages in the system registry with file type associations, but all files with .MSI extension will get same icon on that machine.
As a work around, you can try using 'SingleImage' compressed build option in your express project (which streams msi into setup.exe) and then you can change the icon for your setup.exe file.
... View more
Sep 04, 2019
07:16 AM
This change is addressed in InstallShield version 2019. You can refer IS 2019 enhancement list mentioned below for more details
https://helpnet.flexerasoftware.com/installshield25helplib/rn/ReleaseNotes.htm#isreleasenotes_1919867033_1167019
... View more
Sep 04, 2019
04:30 AM
Looks like some problem while contacting license server to reactivate your product. You can try below offline return and activate process:
1. Open a command prompt in admin mode and cd to 'C:\Program Files (x86)\InstallShield\2014\System' 2. Type 'TSconfig /return /no_internet' and push enter - A window should appear which has a request code to deactivate the licence. 3. Save this request code and visit the Offline Activation Web page (http://www.installshield.com/offlineactivation). Follow the instructions to browse to the .request file that you saved. When you click the button on the Offline Activation Web page to submit the activation request and obtain the activation response file (.xml), Save it and make it available on the machine on which you initiated the activation process. 4. Re-open the InstallShield software when you have the above activation response file (.xml), and Proceed to the Offline Return dialog, which has a Response text box. Click the Load button and select activation xml file.
Repeat above steps for the activate command as mentioned below
TSconfig /activate /no_internet
You can contact Flexera Support if above steps are not working for you.
https://community.flexera.com/t5/Support-Information/Support-Contacts/ta-p/94720
Or contact via mail, support@flexerasoftware.com
... View more
Aug 30, 2019
08:50 AM
You can refer below KB article
https://community.flexera.com/t5/InstallShield-Knowledge-Base/Skin-Customization-Kit/ta-p/4504
... View more
Aug 28, 2019
01:26 PM
From the log, looks like you have enabled 'IIS-WebServerRole' (Internet Information Services) feature.
8-27-2019[11:20:54 AM]: Getting feature list for initial feature items 'IIS-WebServerRole' 8-27-2019[11:20:54 AM]: Getting feature items for OS version 1000 (Server) 8-27-2019[11:20:54 AM]: Final feature list for current item is: NetFx3ServerFeatures;NetFx3;IIS-WebServerRole;IIS-WebServer;IIS-WebServerManagementTools;IIS-ManagementConsole;IIS-CommonHttpFeatures;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors;IIS-StaticContent;IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-RequestMonitor;IIS-Performance;IIS-HttpCompressionStatic;IIS-Security;IIS-RequestFiltering;IIS-ApplicationDevelopment;IIS-ISAPIExtensions;IIS-ISAPIFilter;NetFx4Extended-ASPNET45;IIS-NetFxExtensibility;IIS-ASPNET
This feature has dependency on NetFx3. You can open your project (.issuite) file and refer below nodes.
<WindowsFeaturesDefinitions> <IIS-WebServerRole> <DependsOn>NetFx3</DependsOn> ..... </IIS-WebServerRole> </WindowsFeaturesDefinitions>
I am not sure you still need .Net 3.5 dependency on IIS feature on other operating systems and I have not tried if you can remove this dependency from your suite project.
You can refer below link for more information
https://helpnet.flexerasoftware.com/installshield25helplib/helplibrary/SteWindowsFeat.htm
Some more information below if it helps for this issue:
If you still need .net 3.5 for other OS, you can add .net 3.5 pre-requisite as a package to your project and this gets added as dependency package. You can control exit behavior (on failures) of this package by simply ignoring and choosing setup to continue.
https://helpnet.flexerasoftware.com/installshield22helplib/helplibrary/SteImportPRQ.htm#creatingsuites_3383918860_1045030
... View more
Aug 28, 2019
12:15 PM
Did you specify a condition for this event? Click the ellipsis button (...) in this setting. The Condition Builder dialog box opens, which enables you to specify the conditions that must be met for the action.
For now, you can specify a condition as 1 (shown in the image), so that the action is performed under all conditions.
... View more
Aug 26, 2019
07:03 AM
You should add your custom bitmap to support files view in your project
... View more
Aug 25, 2019
11:21 PM
If you still have access to old machine, you can return your license using one of the below mentioned steps.
1. From Help menu => 'About InstallShield' dialog 2. Running the command from cmd window: 'TSConfig.exe /return' 3. Uninstall InstallShield
If you do not have access to old machine, contact Flexera Support to return the license and activate again on your new machine. They will be able help you to unlock your license. https://community.flexera.com/t5/Support-Information/Support-Contacts/ta-p/94720
Or you can also contact via mail, support@flexerasoftware.com
... View more
Aug 25, 2019
10:30 PM
1 Kudo
"Preparing to Install" dialog is being displayed by the bootstrap launcher and, thus, it does not appear in the project in the InstallShield Dialog Editor. And there are no InstallScript or MSI settings backing up this dialog.
Perhaps using the 'Small Initialization Dialog' (Media-->Releases-->Product Configuration -->Release--> under Setup.exe Tab ---> Small Initialization Dialog to Yes) would be an alternative for you.
... View more
Aug 23, 2019
11:12 PM
Can you provide suite log file?
... View more
Aug 23, 2019
01:49 PM
1 Kudo
Select bitmap control (Name : ControlId_551) on a dialog and browse for new image file name as shown below. You need to repeat for all other dialogs (such as SdWelcome, SdFinish, and SdFinishReboot). After changing the sidebar image and rebuilding the project, the dialogs will be displayed with the custom image.
You can as well try changing the direct image in the InstallShield distribution. but still it will be necessary to right-click each exterior dialog box in the Dialogs view and select Edit to consider modified changes.
... View more
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
Latest posts by Varaprasad
Subject | Views | Posted |
---|---|---|
333 | Sep 03, 2020 07:05 AM | |
251 | Sep 03, 2020 06:57 AM | |
279 | Sep 03, 2020 06:52 AM | |
326 | Sep 03, 2020 06:46 AM | |
248 | Sep 03, 2020 06:40 AM | |
288 | Sep 03, 2020 06:32 AM | |
266 | Sep 03, 2020 06:26 AM | |
3811 | Jan 10, 2020 02:42 AM | |
24362 | Oct 22, 2019 11:00 AM | |
24368 | Oct 22, 2019 06:58 AM |
Activity Feed
- 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
- Posted Re: Download previous versions of InstallShield(Professional) on InstallShield Forum. Sep 25, 2019 12:32 AM
- Got a Kudo for Re: LaunchAppAndWait. Sep 24, 2019 11:33 AM