--- title: EnterpriseDesktopAppManagement CSP description: The EnterpriseDesktopAppManagement CSP handles enterprise desktop application management tasks, such as installing or removing applications. ms.assetid: 2BFF7491-BB01-41BA-9A22-AB209EE59FC5 ms.reviewer: manager: dansimp ms.author: dansimp ms.topic: article ms.prod: w10 ms.technology: windows author: manikadhiman ms.date: 07/11/2017 --- # EnterpriseDesktopAppManagement CSP The EnterpriseDesktopAppManagement configuration service provider is used to handle enterprise desktop application management tasks, such as querying installed enterprise applications, installing applications, or removing applications. Application installations can take some time to complete, hence they are done asynchronously. When the Exec command is completed, the client can send a generic alert to the management server with a status, whether it's a failure or success. For a SyncML example, see [Alert example](#alert-example). The following shows the EnterpriseDesktopAppManagement CSP in tree format. ``` ./Device/Vendor/MSFT EnterpriseDesktopAppManagement ----MSI --------ProductID ------------Version ------------Name ------------Publisher ------------InstallPath ------------InstallDate ------------DownloadInstall ------------Status ------------LastError ------------LastErrorDesc --------UpgradeCode ------------Guid ``` **./Device/Vendor/MSFT/EnterpriseDesktopAppManagement** The root node for the EnterpriseDesktopAppManagement configuration service provider. **MSI** Node for all settings. **MSI/***ProductID* The MSI product code for the application. **MSI/*ProductID*/Version** Version number. Value type is string. Supported operation is Get. **MSI/*ProductID*/Name** Name of the application. Value type is string. Supported operation is Get. **MSI/*ProductID*/Publisher** Publisher of application. Value type is string. Supported operation is Get. **MSI/*ProductID*/InstallPath** Installation path of the application. Value type is string. Supported operation is Get. **MSI/*ProductID*/InstallDate** Installation date of the application. Value type is string. Supported operation is Get. **MSI/*ProductID*/DownloadInstall** Executes the download and installation of the application. Value type is string. Supported operations are Execute and Get. In Windows 10, version 1703 service release, a new tag \ was added to the \ section of the XML. The default value is 0 (do not send token). This tag is optional and needs to be set to 1 in case the server wants the download URL to get the AADUserToken. Here is an example: ```xml /quiet 5 3 5 1 ``` **MSI/*ProductID*/Status** Status of the application. Value type is string. Supported operation is Get. | Status | Value | |---------------------------|-------| | Initialized | 10 | | Download In Progress | 20 | | Pending Download Retry | 25 | | Download Failed | 30 | | Download Completed | 40 | | Pending User Session | 48 | | Enforcement In Progress | 50 | | Pending Enforcement Retry | 55 | | Enforcement Failed | 60 | | Enforcement Completed | 70 | **MSI/*ProductID*/LastError** The last error code during the application installation process. This is typically stored as an HRESULT format. Depending on what was occurring when the error happened, this could be the result of executing MSIExec.exe or the error result from an API that failed. Value type is string. Supported operation is Get. **MSI/*ProductID*/LastErrorDesc** Contains the last error code description. The LastErrorDesc value is looked up for the matching LastError value. Sometimes there is no LastErrorDesc returned. Value type is string. Supported operation is Get. **MSI/UpgradeCode** Added in the March service release of Windows 10, version 1607. **MSI/UpgradeCode/_Guid_** Added in the March service release of Windows 10, version 1607. A gateway (or device management server) uses this method to detect matching upgrade MSI product when a Admin wants to update an existing MSI app. If the same upgrade product is installed, then the update is allowed. Value type is string. Supported operation is Get. ## Examples **SyncML to request CSP version information** ```xml 12345 ./Device/Vendor/MSFT/EnterpriseDesktopAppManagement?prop=Type ``` The following table describes the fields in the previous sample: | Name | Description | |--------|-------------------------------------------------------------------------------------------------------------------------------| | Get | Operation being performed. The Get operation is a request to return information. | | CmdID | Input value used to reference the request. Responses will include this value which can be used to match request and response. | | LocURI | Path to Win32 CSP command processor. | **SyncML to perform MSI operations for application uninstall** ```xml 12345 ./Device/Vendor/MSFT/EnterpriseDesktopAppManagement/MSI/%7B1803A630-3C38-4D2B-9B9A-0CB37243539C%7D ``` The following table describes the fields in the previous sample: | Name | Description | |--------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | Delete | Operation being performed. The Delete operation is a request to delete the CSP node that represents the specified MSI installed application and to perform and uninstall of the application as part of the process. | | CmdID | Input value used to reference the request. Responses will include this value which can be used to match request and response. | | LocURI | Path to Win32 CSP command processor, including the Product ID (in this example, 1803A630-3C38-4D2B-9B9A-0CB37243539C) property escaped for XML formatting. | **SyncML to perform MSI operations for application status reporting** ```xml 12345 ./Device/Vendor/MSFT/EnterpriseDesktopAppManagement/MSI/%7B1803A630-3C38-4D2B-9B9A-0CB37243539C%7D ``` The following table describes the fields in the previous sample: | Name | Description | |--------|-----------------------| | Get | Operation being performed. The Get operation is a request to report the status of the specified MSI installed application.| | CmdID | Input value used to reference the request. Responses will include this value which can be used to match request and response. | | LocURI | Path to Win32 CSP command processor, including the Product ID (in this example, 1803A630-3C38-4D2B-9B9A-0CB37243539C) property escaped for XML formatting. | **SyncML to perform MSI install operations for an application targeted to a specific user on the device. The Add command is required to precede the Exec command.** ```xml 1 ./User/Vendor/MSFT/EnterpriseDesktopAppManagement/MSI/%7B1803A630-3C384D2B-9B9A-0CB37243539C%7D/DownloadInstall 6 ./User/Vendor/MSFT/EnterpriseDesktopAppManagement/MSI/%7B1803A630-3C38-4D2B-9B9A-0CB37243539C%7D/DownloadInstall xml text/plain http://bcl-w2k12r2-vm/testapps/msi/reboot/reboot.msi https://dp2.com/packages/myApp.msi 134D8F1F7C3C036DC3DCDA9F97515C8C7951DB154B73365C9C22962BD23E3EB3 /quiet 5 3 5 ``` The following table describes the fields in the previous sample:
Name Description
Add This is required to precede the Exec command.
  • CmdID - Input value used to reference the request. Responses includes this value, which can be use to match the request and response.
  • LocURI - Path to Win32 CSP command processor, including the Product ID (in this example, 1803A630-3C38-4D2B-9B9A-0CB37243539C) property escaped for XML formatting.
Exec The Exec node includes the parameters and properties requires to locate, download, validate and perform product installation.
  • CmdID - Input value used to reference the request. Responses will include this value which can be used to match request and response.
  • LocURI - Path to Win32 CSP command processor, including the Product ID (in this example, 1803A630-3C38-4D2B-9B9A-0CB37243539C) property escaped for XML formatting.
  • Data - The Data node contains an embedded XML, of type “MsiInstallJob”
  • MsiInstallJob - Contains all information required for the successful download, validation and execution of the MSI installation process (see section at the end of this document for details on this embedded data object).
> [!Note] > Information status on the MSI job will be reported using standard OMA-DM notification mechanism. The status reported is represented using standard MSIEXEC return codes as HRESULT as defined in the MSIEXEC topic on Microsoft TechNet at [Msiexec (command-line options)](https://technet.microsoft.com/library/cc759262%28v=ws.10%29.aspx). **SyncML to perform MSI install operations for an application targeted to all users on the device (per-device installation)** ```xml 1 ./Device /Vendor/MSFT/EnterpriseDesktopAppManagement/MSI/%7B6F7CB29F-1319-4816-B345-0856916EB801%7D/DownloadInstall 67890 ./Device /Vendor/MSFT/EnterpriseDesktopAppManagement/MSI/%7B6F7CB29F-1319-4816-B345-0856916EB801%7D/DownloadInstall xml text/plain http://bcl-w2k12r2-vm/testapps/msi/Orca/Orca.msi https://dp2.com/packages/myApp.msi 4525065777EF18B9444ABF71DD4B48E5F64F4F0E1E029995FB8DA441CDE4296E /quiet 5 3 5 ``` The following table MsiInstallJob describes the schema elements.
Element Description
MsiInstallJob root element

"Attribute: "id - the application identifier of the application being installed

Product child element of MsiInstallJob

Attribute: “Version” – string representation of application version

Download child element of Product. Container for download configuration information.
ContentURLList child element of Download. Contains list of 1 or more content download URL locators in the form of ContentURL elements.
ContentURL Location content should be downloaded from. Must be a property formatted URL that points to the .MSI file.
Validation Contains information used to validate contend authenticity. • FileHash – SHA256 hash value of file content
FileHash SHA256 hash value of file content
Enforcement installation properties to be used when installing this MSI
CommandLine Command-line options to be used when calling MSIEXEC.exe
TimeOut Amount of time, in minutes that the installation process can run before the installer considers the installation may have failed and no longer monitors the installation operation.
RetryCount The number of times the download and installation operation will be retried before the installation will be marked as failed.
RetryInterval Amount of time, in minutes between retry operations.
Here is an example of a common response to a request ```xml 12345 1 0 SyncHdr 200 67890 1 1 Add 200 ``` ## How to determine which installation context to use for an MSI package The following tables shows how app targeting and MSI package type (per-user, per machine, or dual mode) are installed in the client. For Intune standalone environment, the MSI package will determine the MSI execution context.
Target Per-user MSI Per-machine MSI Dual mode MSI
User Install the MSI per-user

LocURI contains a User prefix, such as ./User

Install the MSI per-device

LocURI contains a Device prefix, such as ./Device

Install the MSI per-user

LocURI contains a User prefix, such as ./User

System Install the MSI per-user

LocURI contains a User prefix, such as ./User

Install the MSI per-device

LocURI contains a Device prefix, such as ./Device

Install the MSI per-user

LocURI contains a User prefix, such as ./User

The following table applies to SCCM hybrid environment.
Target Per-user MSI Per-machine MSI Dual mode MSI
User Install the MSI per-user

LocURI contains a User prefix, such as ./User

Install the MSI per-device

LocURI contains a Device prefix, such as ./Device

Install the MSI per-user

LocURI contains a User prefix, such as ./User

System Install the MSI per-user

LocURI contains a User prefix, such as ./User

Install the MSI per-device

LocURI contains a Device prefix, such as ./Device

Install the MSI per- system context

LocURI contains a Device prefix, such as ./Device

## How to determine the package type from the MSI package - ALLUSERS="" - per-user package type - ALLUSERS=1 - per-machine package type - ALLUSERS=2, MSIINSTALLPERUSER=1 - dual mode package type Properties can be specified in the package, passed through the command line, modified by a transform, or (more commonly) selected through a user interface dialog. Here's a list of references: - [Using Windows Installer](/previous-versions/windows/it-pro/windows-server-2003/cc782896(v=ws.10)) - [Authoring a single package for Per-User or Per-Machine Installation context in Windows 7](https://blogs.msdn.com/b/windows_installer_team/archive/2009/09/02/authoring-a-single-package-for-per-user-or-per-machine-installation-context-in-windows-7.aspx) - SyncML Representation Protocol, Draft Version 1.3 - 27 Aug 2009 (OMA-TS-SyncML\_RepPro-V1\_3-20090827-D) ## Alert example ```xml 4 1224 ./Device/Vendor/MSFT/EnterpriseDesktopAppManagement/MSI/{AF9257BA-6BBD-4624-AA9B-0182D50292C3}/DownloadInstall Reversed-Domain-Name:com.microsoft.mdm.win32csp_install int informational 0 ```