Sep 03, 2020
07:05 AM
Symptoms:
When you are building an InstallShield MSIX project, the following warning may occur:
warning -9583: Restricted capabilities like localSystemServices and packagedServices are only needed if your MSIX project is configured with windows.service extension.
Diagnosis:
This build warning occurs when above capabilities are selected in Capabilities view and windows.service extension is not included in the package.
Solution:
Check if windows.service is configured in the package and try one or more of the following steps to resolve the issue:
If no service is added in the MSIX package, manually unselect above mentioned restricted capabilities from Capabilities view.
If service declaration is added, then make sure corresponding declaration set is selected for a given application entry in the Applications View.
Additional Information
The restricted capabilities localSystemServices and packagedServices allows applications that are created by Microsoft partners and enterprises to declare the windows.service extension in its package manifest so that it can install one or more services along with the app. These services can be configured to run under the Local Service, Network Service, or Local System accounts. Local Service and Network Service services only require the packagedServices capability. Local System services require the packagedServices and localSystemServices capabilities.
... View more
Labels:
Sep 03, 2020
06:57 AM
Symptoms:
When you are building an InstallShield MSIX project, the following error may occur:
error -9582: MSIX services configured to run under the Local Service or Network Service accounts require the packagedServices restricted capability.
Diagnosis:
This build error occurs when windows.service extension is configured with Local Service or Network Service as startup account type and does not have packagedServices capability included in the package.
Solution:
To fix above error, select 'Packaged Services' restricted capability from MSIX project Capabilities view.
... View more
Labels:
Sep 03, 2020
06:52 AM
Symptoms:
When you are building an InstallShield MSIX project, the following error may occur:
error -9581: MSIX services configured to run under the Local System account require the packagedServices and localSystemServices restricted capabilities.
Diagnosis:
This build error occurs when windows.service extension is configured with LocalSystem account as startup account type, and does not have the following capabilities included in the package:
packagedServices
localSystemServices
Solution:
To fix this error, select above restricted capabilities from MSIX project Capabilities view.
... View more
Labels:
Sep 03, 2020
06:46 AM
Symptoms:
When you are building an InstallShield MSIX project, the following error may occur:
warning -9580: This package has services configured. Hence, updating TargetDeviceFamily versions to minimum supported operating system version (Windows 10, version 2004, build number 19041).
Diagnosis:
Windows 10, version 2004, introduces support for running an MSIX package that includes services. Hence Target Device versions will be updated automatically by InstallShield if MSIX package contains NT service (windows.service extension).
Solution:
This warning can be ignored if no changes are required for TargetDeviceFamily versions defined in the manifest file. To override default behavior, configure ‘Include Desktop Extensions’ property in Releases view as required.
... View more
Labels:
Sep 03, 2020
06:40 AM
Symptoms:
Error -9579: MSIX packages with services support is available starting with Windows 10, Version 2004 (build number 19041). Hence, Target Device versions need to be configured accordingly.
Packages targeting MSIX features that are not available in specified TargetDeviceFamily versions may not work as expected. App Installer may throw the error.
Diagnosis:
Windows 10, version 2004, introduces support for running an MSIX package that includes services. Hence Target Device versions need to be configured accordingly if MSIX package contains NT services (windows.service extension).
Solution:
Configure ‘Include Desktop Extensions’ property in Releases view to have right values or leave these values as blank to let InstallShield automatically configure these values while creating MSIX manifest file.
... View more
Labels:
Sep 03, 2020
06:32 AM
Symptoms:
ISDEV : warning -9578: Services configured with dependencies outside the MSIX package are not currently supported by Microsoft. '%1' is not a valid Dependency Service.
%1 is a placeholder that contains the dependency name (referred as part of windows.service extension) causes this warning.
App Installer may throw weird error if definitions for dependency service names are not included as part of MSIX package.
Diagnosis:
This build warning is shown when Dependency Services are configured in windows.service extension and the same is not included as part of the MSIX package. Windows 10, version 2004, introduces support for running an MSIX package that includes services and this release currently does not support services with dependencies outside the package.
Solution:
One or more of the following steps resolve the issue:
Remove either dependency names or create new windows.service extension for referred dependency service name.
Check Microsoft latest documentation on MSIX services and see if this limitation is addressed in the latest release.
... View more
Labels:
Sep 03, 2020
06:26 AM
Symptoms:
During a build, you receive the following build error:
ISDEV : error -9577: Error building Modification Package. Base Package Name in General Information view is empty.
Diagnosis:
This build error has been triggered when building modification package project with base package name is empty. Base Package name is mandatory when you create a modification package that has a strict binding to the main app.
Solution:
To resolve this build error, set the main package identity name as Base Package Name in General Information view.
... View more
Labels:
Jan 10, 2020
02:42 AM
If you are already using InstallShield 2019 version, you will get all new 2019 update notifications automatically (when you launch InstallShield 2019). You just need to click on 'Install' button. You can also use 'Tools => 'Update Product' menu on InstallShield IDE to get all new updates for currently installed version.
If you do not have internet connection or you would like to setup InstallShiled on a new machine, you can download required product updates from PLC(https://flexerasoftware.flexnetoperations.com/). Your product downloads, licenses, and supporting documentation files are available from PLC (Flexera Product and License Center). PLC lists right product updates (Premier, Professional and Express) based on your licensing details.
Please note that you need to sign into the Flexera Community to access the PLC link. Click on the 'Product List' page to see all products to which your account is entitled. If the Product List page shows multiple products, click the InstallShield link. Please go though below link for more details on downloading updates from PLC.
https://helpnet.flexerasoftware.com/plc/en/installshield.htm#download
... View more
Oct 22, 2019
11:00 AM
Yes, those settings suppose to skip reboot flow and allow main installation to continue. Could you please try and let me know if it works for you?
... View more
Oct 22, 2019
06:58 AM
If you would like to handle reboot at the end of the main installation then you can choose either of the below options from the prerequisite behavior tab
Note it, fail to resume if the machine is rebooted, and reboot after the installation
Ignore it, and fail to resume if machine is rebooted
Below link has more details.
https://helpnet.flexerasoftware.com/installshield23helplib/helplibrary/UIRefPrereqEditor_Behavior.htm#ref-prereqeditor_1341126629_1025405
... View more
Oct 04, 2019
08:48 AM
One other way is to build your own custom bootstrapper setup which takes care of installing multiple third party msi's along with your primary installation.
... View more
Oct 03, 2019
11:04 AM
Below command should work. Make sure you have files added\present under Support Files view in your Basic Msi project in order to access this variable.
Get-Property -name SUPPORTDIR
... View more
Oct 03, 2019
10:37 AM
I am not sure about clear requirement here. These are my recommendations at this point.
Return error code (non zero) using exit method from your powershell custom action as below. You can refer msi error codes https://docs.microsoft.com/en-in/windows/win32/msi/error-codes exit(1603)
You can also set property from powershell and use it to exit based on condition checks like sequencing built-in Error type custom action set-property -name NEWPROPERTY -value $Value
... View more
Oct 03, 2019
10:00 AM
You can do using Prerequisite Editor which is available in the Premier and Professional editions of InstallShield.
It is not available in the Express edition of InstallShield.
See if below article helps if you are looking for alternative approach
https://community.flexera.com/t5/InstallShield-Knowledge-Base/Launch-an-MSI-Package-Through-a-Custom-Action-in-Express/ta-p/4298
... View more
Oct 03, 2019
09:35 AM
1 Kudo
Try below
MessageBoxEx("Are you sure?","My message box header",MB_YESNO | MB_ICONEXCLAMATION );
... View more
Latest posts by Varaprasad
Subject | Views | Posted |
---|---|---|
335 | Sep 03, 2020 07:05 AM | |
255 | Sep 03, 2020 06:57 AM | |
280 | Sep 03, 2020 06:52 AM | |
328 | Sep 03, 2020 06:46 AM | |
251 | Sep 03, 2020 06:40 AM | |
290 | Sep 03, 2020 06:32 AM | |
268 | Sep 03, 2020 06:26 AM | |
3847 | Jan 10, 2020 02:42 AM | |
24507 | Oct 22, 2019 11:00 AM | |
24513 | 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