mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-14 06:17:22 +00:00
Merge remote-tracking branch 'refs/remotes/origin/master' into atp-siem
This commit is contained in:
commit
afd24f521e
@ -71,141 +71,41 @@ Each PinRule element contains a sequence of one or more Site elements and a sequ
|
|||||||
The PinRules element can have the following attributes.
|
The PinRules element can have the following attributes.
|
||||||
For help with formatting Pin Rules, see [Representing a Date in XML](#representing-a-date-in-xml) or [Representing a Duration in XML](#representing-a-duration-in-xml).
|
For help with formatting Pin Rules, see [Representing a Date in XML](#representing-a-date-in-xml) or [Representing a Duration in XML](#representing-a-duration-in-xml).
|
||||||
|
|
||||||
- **Duration** or **NextUpdate**
|
| Attribute | Description | Required |
|
||||||
|
|-----------|-------------|----------|
|
||||||
Specifies when the Pin Rules will expire.
|
| **Duration** or **NextUpdate** | Specifies when the Pin Rules will expire. Either is required. **NextUpdate** takes precedence if both are specified. <br> **Duration**, represented as an XML TimeSpan data type, does not allow years and months. You represent the **NextUpdate** attribute as a XML DateTime data type in UTC. | **Required?** Yes. At least one is required. |
|
||||||
Either is required.
|
| **LogDuration** or **LogEndDate** | Configures auditing only to extend beyond the expiration of enforcing the Pin Rules. <br> **LogEndDate**, represented as an XML DateTime data type in UTC, takes precedence if both are specified. <br> You represent **LogDuration** as an XML TimeSpan data type, which does not allow years and months. <br> If neither attribute is specified, auditing expiration uses **Duration** or **NextUpdate** attributes. | No. |
|
||||||
**NextUpdate** takes precedence if both are specified.
|
| **ListIdentifier** | Provides a friendly name for the list of pin rules. Windows does not use this attribute for certificate pinning enforcement, however it is included when the pin rules are converted to a certificate trust list (CTL). | No. |
|
||||||
|
|
||||||
**Duration**, represented as an XML TimeSpan data type, does not allow years and months.
|
|
||||||
You represent the **NextUpdate** attribute as a XML DateTime data type in UTC.
|
|
||||||
|
|
||||||
**Required?** Yes. At least one is required.
|
|
||||||
|
|
||||||
- **LogDuration** or **LogEndDate**
|
|
||||||
|
|
||||||
Configures auditing only to extend beyond the expiration of enforcing the Pin Rules.
|
|
||||||
|
|
||||||
**LogEndDate**, represented as an XML DateTime data type in UTC, takes precedence if both are specified.
|
|
||||||
|
|
||||||
You represent **LogDuration** as an XML TimeSpan data type, which does not allow years and months.
|
|
||||||
|
|
||||||
If neither attribute is specified, auditing expiration uses **Duration** or **NextUpdate** attributes.
|
|
||||||
|
|
||||||
**Required?** No.
|
|
||||||
|
|
||||||
- **ListIdentifier**
|
|
||||||
|
|
||||||
Provides a friendly name for the list of pin rules.
|
|
||||||
Windows does not use this attribute for certificate pinning enforcement, however it is included when the pin rules are converted to a certificate trust list (CTL).
|
|
||||||
|
|
||||||
**Required?** No.
|
|
||||||
|
|
||||||
#### PinRule Element
|
#### PinRule Element
|
||||||
|
|
||||||
The **PinRule** element can have the following attributes:
|
The **PinRule** element can have the following attributes.
|
||||||
|
|
||||||
- **Name**
|
| Attribute | Description | Required |
|
||||||
|
|-----------|-------------|----------|
|
||||||
Uniquely identifies the **PinRule**.
|
| **Name** | Uniquely identifies the **PinRule**. Windows uses this attribute to identify the element for a parsing error or for verbose output. The attribute is not included in the generated certificate trust list (CTL). | Yes.|
|
||||||
Windows uses this attribute to identify the element for a parsing error or for verbose output.
|
| **Error** | Describes the action Windows performs when it encounters a PIN mismatch. You can choose from the following string values: <br>- **Revoked** - Windows reports the certificate protecting the site as if it was revoked. This typically prevents the user from accessing the site. <br>- **InvalidName** - Windows reports the certificate protecting the site as if the name on the certificate does not match the name of the site. This typically results in prompting the user before accessing the site. <br>- **None** - The default value. No error is returned. You can use this setting to audit the pin rules without introducing any user friction. | No. |
|
||||||
The attribute is not included in the generated certificate trust list (CTL).
|
| **Log** | A Boolean value represent as string that equals **true** or **false**. By default, logging is enabled (**true**). | No. |
|
||||||
|
|
||||||
**Required?** Yes.
|
|
||||||
|
|
||||||
- **Error**
|
|
||||||
|
|
||||||
Describes the action Windows performs when it encounters a PIN mismatch.
|
|
||||||
You can choose from the following string values:
|
|
||||||
- **Revoked** - Windows reports the certificate protecting the site as if it was revoked. This typically prevents the user from accessing the site.
|
|
||||||
- **InvalidName** - Windows reports the certificate protecting the site as if the name on the certificate does not match the name of the site. This typically results in prompting the user before accessing the site.
|
|
||||||
- **None** - The default value. No error is returned. You can use this setting to audit the pin rules without introducing any user friction.
|
|
||||||
|
|
||||||
**Required?** No.
|
|
||||||
|
|
||||||
- **Log**
|
|
||||||
|
|
||||||
A Boolean value represent as string that equals **true** or **false**.
|
|
||||||
By default, logging is enabled (**true**).
|
|
||||||
|
|
||||||
**Required?** No.
|
|
||||||
|
|
||||||
#### Certificate element
|
#### Certificate element
|
||||||
|
|
||||||
The **Certificate** element can have the following attributes:
|
The **Certificate** element can have the following attributes.
|
||||||
|
|
||||||
- **File**
|
| Attribute | Description | Required |
|
||||||
|
|-----------|-------------|----------|
|
||||||
Path to a file containing one or more certificates.
|
| **File** | Path to a file containing one or more certificates. Where the certificate(s) can be encoded as: <br>- single certificate <br>- p7b <br>- sst <br> These files can also be Base64 formatted. All **Site** elements included in the same **PinRule** element can match any of these certificates. | Yes (File, Directory or Base64 must be present). |
|
||||||
Where the certificate(s) can be encoded as:
|
| **Directory** | Path to a directory containing one or more of the above certificate files. Skips any files not containing any certificates. | Yes (File, Directory or Base64 must be present). |
|
||||||
- single certificate
|
| **Base64** | Base64 encoded certificate(s). Where the certificate(s) can be encoded as: <br>- single certificate <br>- p7b <br> - sst <br> This allows the certificates to be included in the XML file without a file directory dependency. <br> Note: <br> You can use **certutil -encode** to convert a .cer file into base64. You can then use Notepad to copy and paste the base64 encoded certificate into the pin rule. | Yes (File, Directory or Base64 must be present). |
|
||||||
- p7b
|
| **EndDate** | Enables you to configure an expiration date for when the certificate is no longer valid in the pin rule. <br>If you are in the process of switching to a new root or CA, you can set the **EndDate** to allow matching of this element’s certificates.<br> If the current time is past the **EndDate**, then, when creating the certificate trust list (CTL), the parser outputs a warning message and exclude the certificate(s) from the Pin Rule in the generated CTL.<br> For help with formatting Pin Rules, see [Representing a Date in XML](#representing-a-date-in-xml).| No.|
|
||||||
- sst.
|
|
||||||
|
|
||||||
These files can also be Base64 formatted.
|
|
||||||
All **Site** elements included in the same **PinRule** element can match any of these certificates.
|
|
||||||
|
|
||||||
**Required?** Yes (File, Directory or Base64 must be present).
|
|
||||||
|
|
||||||
- **Directory**
|
|
||||||
|
|
||||||
Path to a directory containing one or more of the above certificate files.
|
|
||||||
Skips any files not containing any certificates.
|
|
||||||
|
|
||||||
**Required?** Yes (File, Directory or Base64 must be present).
|
|
||||||
|
|
||||||
- **Base64**
|
|
||||||
|
|
||||||
Base64 encoded certificate(s).
|
|
||||||
Where the certificate(s) can be encoded as:
|
|
||||||
- single certificate
|
|
||||||
- p7b
|
|
||||||
- sst.
|
|
||||||
|
|
||||||
This allows the certificates to be included in the XML file without a file directory dependency.
|
|
||||||
|
|
||||||
> [!Note]
|
|
||||||
> You can use **certutil -encode** to a .cer file into base64. You can then use Notepad to copy and paste the base64 encoded certificate into the pin rule.
|
|
||||||
|
|
||||||
**Required?** Yes (File, Directory or Base64 must be present).
|
|
||||||
|
|
||||||
- **EndDate**
|
|
||||||
|
|
||||||
Enables you to configure an expiration date for when the certificate is no longer valid in the pin rule.
|
|
||||||
|
|
||||||
If you are in the process of switching to a new root or CA, you can set the **EndDate** to allow matching of this element’s certificates.
|
|
||||||
|
|
||||||
If the current time is past the **EndDate**, then, when creating the certificate trust list (CTL), the parser outputs a warning message and exclude the certificate(s) from the Pin Rule in the generated CTL.
|
|
||||||
|
|
||||||
For help with formatting Pin Rules, see [Representing a Date in XML](#representing-a-date-in-xml).
|
|
||||||
|
|
||||||
**Required?** No.
|
|
||||||
|
|
||||||
#### Site element
|
#### Site element
|
||||||
|
|
||||||
The **Site** element can have the following attributes:
|
The **Site** element can have the following attributes.
|
||||||
|
|
||||||
- **Domain**
|
| Attribute | Description | Required |
|
||||||
|
|-----------|-------------|----------|
|
||||||
Contains the DNS name to be matched for this pin rule.
|
| **Domain** | Contains the DNS name to be matched for this pin rule. When creating the certificate trust list, the parser normalizes the input name string value as follows: <br>- If the DNS name has a leading "*" it is removed. <br>- Non-ASCII DNS name are converted to ASCII Puny Code. <br>- Upper case ASCII characters are converted to lower case. <br>If the normalized name has a leading ".", then, wildcard left hand label matching is enabled. For example, ".xyz.com" would match "abc.xyz.com". | Yes.|
|
||||||
When creating the certificate trust list, the parser normalizes the input name string value as follows:
|
| **AllSubdomains** | By default, wildcard left hand label matching is restricted to a single left hand label. This attribute can be set to "true" to enable wildcard matching of all of the left-hand labels.<br>For example, setting this attribute would also match "123.abc.xyz.com" for the ".xyz.com" domain value.| No.|
|
||||||
- If the DNS name has a leading "*" it is removed.
|
|
||||||
- Non-ASCII DNS name are converted to ASCII Puny Code.
|
|
||||||
- Upper case ASCII characters are converted to lower case.
|
|
||||||
|
|
||||||
If the normalized name has a leading ".", then, wildcard left hand label matching is enabled.
|
|
||||||
For example, ".xyz.com" would match "abc.xyz.com".
|
|
||||||
|
|
||||||
**Required?** Yes.
|
|
||||||
|
|
||||||
- **AllSubdomains**
|
|
||||||
|
|
||||||
By default, wildcard left hand label matching is restricted to a single left hand label.
|
|
||||||
This attribute can be set to "true" to enable wildcard matching of all of the left hand labels.
|
|
||||||
|
|
||||||
For example, setting this attribute would also match "123.abc.xyz.com" for the ".xyz.com" domain value.
|
|
||||||
|
|
||||||
**Required?** No.
|
|
||||||
|
|
||||||
### Create a Pin Rules Certificate Trust List
|
### Create a Pin Rules Certificate Trust List
|
||||||
|
|
||||||
@ -302,10 +202,6 @@ Sign-in to the reference computer using domain administrator equivalent credenti
|
|||||||
|
|
||||||
To assist in constructing certificate pinning rules, you can configure the **PinRulesLogDir** setting under the certificate chain configuration registry key to include a parent directory to log pin rules.
|
To assist in constructing certificate pinning rules, you can configure the **PinRulesLogDir** setting under the certificate chain configuration registry key to include a parent directory to log pin rules.
|
||||||
|
|
||||||
```code
|
|
||||||
HKLM\SOFTWARE\Microsoft\Cryptography\OID\EncodingType0\CertDllCreateCertificateChainEngine\Config
|
|
||||||
```
|
|
||||||
|
|
||||||
| Name | Value |
|
| Name | Value |
|
||||||
|------|-------|
|
|------|-------|
|
||||||
| Key | HKLM\SOFTWARE\Microsoft\Cryptography\OID\EncodingType0\CertDllCreateCertificateChainEngine\Config |
|
| Key | HKLM\SOFTWARE\Microsoft\Cryptography\OID\EncodingType0\CertDllCreateCertificateChainEngine\Config |
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: ActiveSync CSP
|
title: ActiveSync CSP
|
||||||
description: ActiveSync CSP
|
description: ActiveSync CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: c65093ef-bd36-4f32-9dab-edb7bcfb3188
|
ms.assetid: c65093ef-bd36-4f32-9dab-edb7bcfb3188
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# ActiveSync CSP
|
# ActiveSync CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: ActiveSync DDF file
|
title: ActiveSync DDF file
|
||||||
description: ActiveSync DDF file
|
description: ActiveSync DDF file
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: c4cd4816-ad8f-45b2-9b81-8abb18254096
|
ms.assetid: c4cd4816-ad8f-45b2-9b81-8abb18254096
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# ActiveSync DDF file
|
# ActiveSync DDF file
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Add an Azure AD tenant and Azure AD subscription
|
title: Add an Azure AD tenant and Azure AD subscription
|
||||||
description: Here's a step-by-step guide to adding an Azure Active Directory tenant, adding an Azure AD subscription, and registering your subscription.
|
description: Here's a step-by-step guide to adding an Azure Active Directory tenant, adding an Azure AD subscription, and registering your subscription.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 36D94BEC-A6D8-47D2-A547-EBD7B7D163FA
|
ms.assetid: 36D94BEC-A6D8-47D2-A547-EBD7B7D163FA
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Add an Azure AD tenant and Azure AD subscription
|
# Add an Azure AD tenant and Azure AD subscription
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: AllJoynManagement CSP
|
title: AllJoynManagement CSP
|
||||||
description: The AllJoynManagement configuration service provider (CSP) allows an IT administrator to enumerate the AllJoyn devices that are connected to the AllJoyn bus.
|
description: The AllJoynManagement configuration service provider (CSP) allows an IT administrator to enumerate the AllJoyn devices that are connected to the AllJoyn bus.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 468E0EE5-EED3-48FF-91C0-89F9D159AA8C
|
ms.assetid: 468E0EE5-EED3-48FF-91C0-89F9D159AA8C
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# AllJoynManagement CSP
|
# AllJoynManagement CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: AllJoynManagement DDF
|
title: AllJoynManagement DDF
|
||||||
description: AllJoynManagement DDF
|
description: AllJoynManagement DDF
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 540C2E60-A041-4749-A027-BBAF0BB046E4
|
ms.assetid: 540C2E60-A041-4749-A027-BBAF0BB046E4
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# AllJoynManagement DDF
|
# AllJoynManagement DDF
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: APPLICATION configuration service provider
|
title: APPLICATION configuration service provider
|
||||||
description: APPLICATION configuration service provider
|
description: APPLICATION configuration service provider
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 0705b5e9-a1e7-4d70-a73d-7f758ffd8099
|
ms.assetid: 0705b5e9-a1e7-4d70-a73d-7f758ffd8099
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# APPLICATION configuration service provider
|
# APPLICATION configuration service provider
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: ApplicationRestrictions XSD
|
title: ApplicationRestrictions XSD
|
||||||
description: Here's the XSD for the ApplicationManagement/ApplicationRestrictions policy.
|
description: Here's the XSD for the ApplicationManagement/ApplicationRestrictions policy.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: A5AA2B59-3736-473E-8F70-A90FD61EE426
|
ms.assetid: A5AA2B59-3736-473E-8F70-A90FD61EE426
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# ApplicationRestrictions XSD
|
# ApplicationRestrictions XSD
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: AppLocker CSP
|
title: AppLocker CSP
|
||||||
description: AppLocker CSP
|
description: AppLocker CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 32FEA2C9-3CAD-40C9-8E4F-E3C69637580F
|
ms.assetid: 32FEA2C9-3CAD-40C9-8E4F-E3C69637580F
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# AppLocker CSP
|
# AppLocker CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: AppLocker DDF file
|
title: AppLocker DDF file
|
||||||
description: AppLocker DDF file
|
description: AppLocker DDF file
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 79E199E0-5454-413A-A57A-B536BDA22496
|
ms.assetid: 79E199E0-5454-413A-A57A-B536BDA22496
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# AppLocker DDF file
|
# AppLocker DDF file
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: AppLocker XSD
|
title: AppLocker XSD
|
||||||
description: Here's the XSD for the AppLocker CSP.
|
description: Here's the XSD for the AppLocker CSP.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 70CF48DD-AD7D-4BCF-854F-A41BFD95F876
|
ms.assetid: 70CF48DD-AD7D-4BCF-854F-A41BFD95F876
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# AppLocker XSD
|
# AppLocker XSD
|
||||||
|
@ -1,14 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: Deploy and configure App-V apps using MDM
|
title: Deploy and configure App-V apps using MDM
|
||||||
description: Deploy and configure App-V apps using MDM
|
description: Deploy and configure App-V apps using MDM
|
||||||
MSHAttr:
|
ms.author: maricia
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.author: windows-hardware-design-content
|
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Deploy and configure App-V apps using MDM
|
# Deploy and configure App-V apps using MDM
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Assign seat
|
title: Assign seat
|
||||||
description: The Assign seat operation assigns seat for a specified user in the Windows Store for Business.
|
description: The Assign seat operation assigns seat for a specified user in the Windows Store for Business.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: B42BF490-35C9-405C-B5D6-0D9F0E377552
|
ms.assetid: B42BF490-35C9-405C-B5D6-0D9F0E377552
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Assign seat
|
# Assign seat
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: AssignedAccess CSP
|
title: AssignedAccess CSP
|
||||||
description: The AssignedAccess configuration service provider (CSP) is used set the device to run in kiosk mode.
|
description: The AssignedAccess configuration service provider (CSP) is used set the device to run in kiosk mode.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 421CC07D-6000-48D9-B6A3-C638AAF83984
|
ms.assetid: 421CC07D-6000-48D9-B6A3-C638AAF83984
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# AssignedAccess CSP
|
# AssignedAccess CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: AssignedAccess DDF
|
title: AssignedAccess DDF
|
||||||
description: AssignedAccess DDF
|
description: AssignedAccess DDF
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 224FADDB-0EFD-4E5A-AE20-1BD4ABE24306
|
ms.assetid: 224FADDB-0EFD-4E5A-AE20-1BD4ABE24306
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# AssignedAccess DDF
|
# AssignedAccess DDF
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Azure Active Directory integration with MDM
|
title: Azure Active Directory integration with MDM
|
||||||
description: Azure Active Directory is the world largest enterprise cloud identity management service.
|
description: Azure Active Directory is the world largest enterprise cloud identity management service.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: D03B0765-5B5F-4C7B-9E2B-18E747D504EE
|
ms.assetid: D03B0765-5B5F-4C7B-9E2B-18E747D504EE
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
|
@ -1,14 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: BitLocker CSP
|
title: BitLocker CSP
|
||||||
description: BitLocker CSP
|
description: BitLocker CSP
|
||||||
MSHAttr:
|
ms.author: maricia
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.author: windows-hardware-design-content
|
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# BitLocker CSP
|
# BitLocker CSP
|
||||||
|
@ -1,14 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: BitLocker DDF file
|
title: BitLocker DDF file
|
||||||
description: BitLocker DDF file
|
description: BitLocker DDF file
|
||||||
MSHAttr:
|
ms.author: maricia
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.author: windows-hardware-design-content
|
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# BitLocker DDF file
|
# BitLocker DDF file
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: BOOTSTRAP CSP
|
title: BOOTSTRAP CSP
|
||||||
description: BOOTSTRAP CSP
|
description: BOOTSTRAP CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: b8acbddc-347f-4543-a45b-ad2ffae3ffd0
|
ms.assetid: b8acbddc-347f-4543-a45b-ad2ffae3ffd0
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# BOOTSTRAP CSP
|
# BOOTSTRAP CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: BrowserFavorite CSP
|
title: BrowserFavorite CSP
|
||||||
description: BrowserFavorite CSP
|
description: BrowserFavorite CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 5d2351ff-2d6a-4273-9b09-224623723cbf
|
ms.assetid: 5d2351ff-2d6a-4273-9b09-224623723cbf
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# BrowserFavorite CSP
|
# BrowserFavorite CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Bulk assign and reclaim seats from users
|
title: Bulk assign and reclaim seats from users
|
||||||
description: The Bulk assign and reclaim seats from users operation returns reclaimed or assigned seats in the Windows Store for Business.
|
description: The Bulk assign and reclaim seats from users operation returns reclaimed or assigned seats in the Windows Store for Business.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 99E2F37D-1FF3-4511-8969-19571656780A
|
ms.assetid: 99E2F37D-1FF3-4511-8969-19571656780A
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Bulk assign and reclaim seats from users
|
# Bulk assign and reclaim seats from users
|
||||||
|
@ -4,15 +4,12 @@ description: Bulk enrollment is an efficient way to set up a large number of dev
|
|||||||
MS-HAID:
|
MS-HAID:
|
||||||
- 'p\_phdevicemgmt.bulk\_enrollment'
|
- 'p\_phdevicemgmt.bulk\_enrollment'
|
||||||
- 'p\_phDeviceMgmt.bulk\_enrollment\_using\_Windows\_provisioning\_tool'
|
- 'p\_phDeviceMgmt.bulk\_enrollment\_using\_Windows\_provisioning\_tool'
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: DEB98FF3-CC5C-47A1-9277-9EF939716C87
|
ms.assetid: DEB98FF3-CC5C-47A1-9277-9EF939716C87
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: CellularSettings CSP
|
title: CellularSettings CSP
|
||||||
description: CellularSettings CSP
|
description: CellularSettings CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: ce8b6f16-37ca-4aaf-98b0-306d12e326df
|
ms.assetid: ce8b6f16-37ca-4aaf-98b0-306d12e326df
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# CellularSettings CSP
|
# CellularSettings CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Certificate authentication device enrollment
|
title: Certificate authentication device enrollment
|
||||||
description: This section provides an example of the mobile device enrollment protocol using certificate authentication policy.
|
description: This section provides an example of the mobile device enrollment protocol using certificate authentication policy.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 57DB3C9E-E4C9-4275-AAB5-01315F9D3910
|
ms.assetid: 57DB3C9E-E4C9-4275-AAB5-01315F9D3910
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Certificate authentication device enrollment
|
# Certificate authentication device enrollment
|
||||||
|
@ -4,15 +4,12 @@ description: The enrolled client certificate expires after a period of use.
|
|||||||
MS-HAID:
|
MS-HAID:
|
||||||
- 'p\_phdevicemgmt.certificate\_renewal'
|
- 'p\_phdevicemgmt.certificate\_renewal'
|
||||||
- 'p\_phDeviceMgmt.certificate\_renewal\_windows\_mdm'
|
- 'p\_phDeviceMgmt.certificate\_renewal\_windows\_mdm'
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: F910C50C-FF67-40B0-AAB0-CA7CE02A9619
|
ms.assetid: F910C50C-FF67-40B0-AAB0-CA7CE02A9619
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Certificate Renewal
|
# Certificate Renewal
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: CertificateStore CSP
|
title: CertificateStore CSP
|
||||||
description: CertificateStore CSP
|
description: CertificateStore CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 0fe28629-3cc3-42a0-91b3-3624c8462fd3
|
ms.assetid: 0fe28629-3cc3-42a0-91b3-3624c8462fd3
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# CertificateStore CSP
|
# CertificateStore CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: CertificateStore DDF file
|
title: CertificateStore DDF file
|
||||||
description: This topic shows the OMA DM device description framework (DDF) for the CertificateStore configuration service provider. DDF files are used only with OMA DM provisioning XML.
|
description: This topic shows the OMA DM device description framework (DDF) for the CertificateStore configuration service provider. DDF files are used only with OMA DM provisioning XML.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: D9A12D4E-3122-45C3-AD12-CC4FFAEC08B8
|
ms.assetid: D9A12D4E-3122-45C3-AD12-CC4FFAEC08B8
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# CertificateStore DDF file
|
# CertificateStore DDF file
|
||||||
|
@ -1,14 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: CleanPC CSP
|
title: CleanPC CSP
|
||||||
description: The CleanPC configuration service provider (CSP) allows removal of user-installed and pre-installed applications, with the option to persist user data. This CSP was added in Windows 10, version 1703.
|
description: The CleanPC configuration service provider (CSP) allows removal of user-installed and pre-installed applications, with the option to persist user data. This CSP was added in Windows 10, version 1703.
|
||||||
MSHAttr:
|
ms.author: maricia
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.author: windows-hardware-design-content
|
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# CleanPC CSP
|
# CleanPC CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: CleanPC DDF
|
title: CleanPC DDF
|
||||||
description: This topic shows the OMA DM device description framework (DDF) for the CleanPC configuration service provider. DDF files are used only with OMA DM provisioning XML.
|
description: This topic shows the OMA DM device description framework (DDF) for the CleanPC configuration service provider. DDF files are used only with OMA DM provisioning XML.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: A2182898-1577-4675-BAE5-2A3A9C2AAC9B
|
ms.assetid: A2182898-1577-4675-BAE5-2A3A9C2AAC9B
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# CleanPC DDF
|
# CleanPC DDF
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: ClientCertificateInstall CSP
|
title: ClientCertificateInstall CSP
|
||||||
description: ClientCertificateInstall CSP
|
description: ClientCertificateInstall CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: B624EB73-2972-47F2-9D7E-826D641BF8A7
|
ms.assetid: B624EB73-2972-47F2-9D7E-826D641BF8A7
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# ClientCertificateInstall CSP
|
# ClientCertificateInstall CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: ClientCertificateInstall DDF file
|
title: ClientCertificateInstall DDF file
|
||||||
description: ClientCertificateInstall DDF file
|
description: ClientCertificateInstall DDF file
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 7F65D045-A750-4CDE-A1CE-7D152AA060CA
|
ms.assetid: 7F65D045-A750-4CDE-A1CE-7D152AA060CA
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# ClientCertificateInstall DDF file
|
# ClientCertificateInstall DDF file
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: CM\_CellularEntries CSP
|
title: CM\_CellularEntries CSP
|
||||||
description: CM\_CellularEntries CSP
|
description: CM\_CellularEntries CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: f8dac9ef-b709-4b76-b6f5-34c2e6a3c847
|
ms.assetid: f8dac9ef-b709-4b76-b6f5-34c2e6a3c847
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# CM\_CellularEntries CSP
|
# CM\_CellularEntries CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: CM\_ProxyEntries CSP
|
title: CM\_ProxyEntries CSP
|
||||||
description: CM\_ProxyEntries CSP
|
description: CM\_ProxyEntries CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: f4c3dc71-c85a-4c68-9ce9-19f408ff7a0a
|
ms.assetid: f4c3dc71-c85a-4c68-9ce9-19f408ff7a0a
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# CM\_ProxyEntries CSP
|
# CM\_ProxyEntries CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: CMPolicy CSP
|
title: CMPolicy CSP
|
||||||
description: CMPolicy CSP
|
description: CMPolicy CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 62623915-9747-4eb1-8027-449827b85e6b
|
ms.assetid: 62623915-9747-4eb1-8027-449827b85e6b
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# CMPolicy CSP
|
# CMPolicy CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: CMPolicyEnterprise CSP
|
title: CMPolicyEnterprise CSP
|
||||||
description: CMPolicyEnterprise CSP
|
description: CMPolicyEnterprise CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: A0BE3458-ABED-4F80-B467-F842157B94BF
|
ms.assetid: A0BE3458-ABED-4F80-B467-F842157B94BF
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# CMPolicyEnterprise CSP
|
# CMPolicyEnterprise CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: CMPolicyEnterprise DDF file
|
title: CMPolicyEnterprise DDF file
|
||||||
description: CMPolicyEnterprise DDF file
|
description: CMPolicyEnterprise DDF file
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 065EF07A-0CF3-4EE5-B620-3464A75B7EED
|
ms.assetid: 065EF07A-0CF3-4EE5-B620-3464A75B7EED
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# CMPolicyEnterprise DDF file
|
# CMPolicyEnterprise DDF file
|
||||||
|
@ -1,22 +1,25 @@
|
|||||||
---
|
---
|
||||||
title: Configuration service provider reference
|
title: Configuration service provider reference
|
||||||
description: A configuration service provider (CSP) is an interface to read, set, modify, or delete configuration settings on the device.
|
description: A configuration service provider (CSP) is an interface to read, set, modify, or delete configuration settings on the device.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 71823658-951f-4163-9c40-c4d4adceaaec
|
ms.assetid: 71823658-951f-4163-9c40-c4d4adceaaec
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Configuration service provider reference
|
# Configuration service provider reference
|
||||||
|
|
||||||
A configuration service provider (CSP) is an interface to read, set, modify, or delete configuration settings on the device. These settings map to registry keys or files. Some configuration service providers support the WAP format, some support SyncML, and some support both. SyncML is only used over–the–air for Open Mobile Alliance Device Management (OMA DM), whereas WAP can be used over–the–air for OMA Client Provisioning, or it can be included in the phone image as a .provxml file that is installed during boot.
|
A configuration service provider (CSP) is an interface to read, set, modify, or delete configuration settings on the device. These settings map to registry keys or files. Some configuration service providers support the WAP format, some support SyncML, and some support both. SyncML is only used over–the–air for Open Mobile Alliance Device Management (OMA DM), whereas WAP can be used over–the–air for OMA Client Provisioning, or it can be included in the phone image as a .provxml file that is installed during boot.
|
||||||
|
|
||||||
For information about the bridge WMI provider classes that map to these CSPs, see [MDM Bridge WMI Provider](https://msdn.microsoft.com/library/windows/hardware/dn905224). See the [list of CSPs supported in Windows Holographic](#hololens) and the [list of CSPs supported in Microsoft Surface Hub ](#surfacehubcspsupport) for additional information.
|
For information about the bridge WMI provider classes that map to these CSPs, see [MDM Bridge WMI Provider](https://msdn.microsoft.com/library/windows/hardware/dn905224).
|
||||||
|
|
||||||
|
Additional lists:
|
||||||
|
- [List of CSPs supported in Windows Holographic](#hololens)
|
||||||
|
- [List of CSPs supported in Microsoft Surface Hub ](#surfacehubcspsupport)
|
||||||
|
- [List of CSPs supported in Windows 10 IoT Core](#iotcoresupport)
|
||||||
|
- [List of CSPs supported in Windows 10 S](#windows10s)
|
||||||
|
|
||||||
The following tables show the configuration service providers support in Windows 10.
|
The following tables show the configuration service providers support in Windows 10.
|
||||||
|
|
||||||
@ -2429,4 +2432,55 @@ Footnotes:
|
|||||||
- [RootCATrustedCertificates CSP](rootcacertificates-csp.md)
|
- [RootCATrustedCertificates CSP](rootcacertificates-csp.md)
|
||||||
- [Update CSP](update-csp.md)
|
- [Update CSP](update-csp.md)
|
||||||
- [VPNv2 CSP](vpnv2-csp.md)
|
- [VPNv2 CSP](vpnv2-csp.md)
|
||||||
- [WiFi CSP](wifi-csp.md)
|
- [WiFi CSP](wifi-csp.md)
|
||||||
|
|
||||||
|
## <a href="" id="windows10s"></a>CSPs supported in Windows 10 S
|
||||||
|
|
||||||
|
The CSPs supported in Windows 10 S is the same as in Windows 10 Pro except that Office CSP and EnterpriseDesktop CSP are not available in Windows 10 S. Here is the list:
|
||||||
|
|
||||||
|
- [ActiveSync CSP](activesync-csp.md)
|
||||||
|
- [APPLICATION CSP](application-csp.md)
|
||||||
|
- [AppLocker CSP](applocker-csp.md)
|
||||||
|
- [BOOTSTRAP CSP](bootstrap-csp.md)
|
||||||
|
- [CellularSettings CSP](cellularsettings-csp.md)
|
||||||
|
- [CertificateStore CSP](certificatestore-csp.md)
|
||||||
|
- [ClientCertificateInstall CSP](clientcertificateinstall-csp.md)
|
||||||
|
- [CM_CellularEntries CSP](cm-cellularentries-csp.md)
|
||||||
|
- [Defender CSP](defender-csp.md)
|
||||||
|
- [DevDetail CSP](devdetail-csp.md)
|
||||||
|
- [DeviceManageability CSP](devicemanageability-csp.md)
|
||||||
|
- [DeviceStatus CSP](devicestatus-csp.md)
|
||||||
|
- [DevInfo CSP](devinfo-csp.md)
|
||||||
|
- [DiagnosticLog CSP](diagnosticlog-csp.md)
|
||||||
|
- [DMAcc CSP](dmacc-csp.md)
|
||||||
|
- [DMClient CSP](dmclient-csp.md)
|
||||||
|
- [EMAIL2 CSP](email2-csp.md)
|
||||||
|
- [EnterpriseAPN CSP](enterpriseapn-csp.md)
|
||||||
|
- [EnterpriseDataProtection CSP](enterprisedataprotection-csp.md)
|
||||||
|
- [EnterpriseModernAppManagement CSP](enterprisemodernappmanagement-csp.md)
|
||||||
|
- [HealthAttestation CSP](healthattestation-csp.md)
|
||||||
|
- [NAP CSP](nap-csp.md)
|
||||||
|
- [NAPDEF CSP](napdef-csp.md)
|
||||||
|
- [NetworkProxy CSP](networkproxy-csp.md)
|
||||||
|
- [NodeCache CSP](nodecache-csp.md)
|
||||||
|
- [PassportForWork CSP](passportforwork-csp.md)
|
||||||
|
- [Policy CSP](policy-configuration-service-provider.md)
|
||||||
|
- [Provisioning CSP](provisioning-csp.md)
|
||||||
|
- [PROXY CSP](proxy-csp.md)
|
||||||
|
- [PXLOGICAL CSP](pxlogical-csp.md)
|
||||||
|
- [Reboot CSP](reboot-csp.md)
|
||||||
|
- [RemoteFind CSP](remotefind-csp.md)
|
||||||
|
- [RemoteWipe CSP](remotewipe-csp.md)
|
||||||
|
- [Reporting CSP](reporting-csp.md)
|
||||||
|
- [RootCATrustedCertificates CSP](rootcacertificates-csp.md)
|
||||||
|
- [SecureAssessment CSP](secureassessment-csp.md)
|
||||||
|
- [SecurityPolicy CSP](securitypolicy-csp.md)
|
||||||
|
- [SharedPC CSP](sharedpc-csp.md)
|
||||||
|
- [Storage CSP](storage-csp.md)
|
||||||
|
- [SUPL CSP](supl-csp.md)
|
||||||
|
- [Update CSP](update-csp.md)
|
||||||
|
- [VPNv2 CSP](vpnv2-csp.md)
|
||||||
|
- [WiFi CSP](wifi-csp.md)
|
||||||
|
- [Win32AppInventory CSP](win32appinventory-csp.md)
|
||||||
|
- [WindowsAdvancedThreatProtection CSP](windowsadvancedthreatprotection-csp.md)
|
||||||
|
- [WindowsLicensing CSP](windowslicensing-csp.md)
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Create a custom configuration service provider
|
title: Create a custom configuration service provider
|
||||||
description: Create a custom configuration service provider
|
description: Create a custom configuration service provider
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 0cb37f03-5bf2-4451-8276-23f4a1dee33f
|
ms.assetid: 0cb37f03-5bf2-4451-8276-23f4a1dee33f
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Create a custom configuration service provider
|
# Create a custom configuration service provider
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: CustomDeviceUI CSP
|
title: CustomDeviceUI CSP
|
||||||
description: CustomDeviceUI CSP
|
description: CustomDeviceUI CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 20ED1867-7B9E-4455-B397-53B8B15C95A3
|
ms.assetid: 20ED1867-7B9E-4455-B397-53B8B15C95A3
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# CustomDeviceUI CSP
|
# CustomDeviceUI CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: CustomDeviceUI DDF
|
title: CustomDeviceUI DDF
|
||||||
description: CustomDeviceUI DDF
|
description: CustomDeviceUI DDF
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: E6D6B902-C57C-48A6-9654-CCBA3898455E
|
ms.assetid: E6D6B902-C57C-48A6-9654-CCBA3898455E
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# CustomDeviceUI DDF
|
# CustomDeviceUI DDF
|
||||||
|
@ -3,16 +3,13 @@ title: Data structures for Windows Store for Business
|
|||||||
MS-HAID:
|
MS-HAID:
|
||||||
- 'p\_phdevicemgmt.business\_store\_data\_structures'
|
- 'p\_phdevicemgmt.business\_store\_data\_structures'
|
||||||
- 'p\_phDeviceMgmt.data\_structures\_windows\_store\_for\_business'
|
- 'p\_phDeviceMgmt.data\_structures\_windows\_store\_for\_business'
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: ABE44EC8-CBE5-4775-BA8A-4564CB73531B
|
ms.assetid: ABE44EC8-CBE5-4775-BA8A-4564CB73531B
|
||||||
description:
|
description:
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Data structures for Windows Store for Business
|
# Data structures for Windows Store for Business
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Defender CSP
|
title: Defender CSP
|
||||||
description: Defender CSP
|
description: Defender CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 481AA74F-08B2-4A32-B95D-5A3FD05B335C
|
ms.assetid: 481AA74F-08B2-4A32-B95D-5A3FD05B335C
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Defender CSP
|
# Defender CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Defender DDF file
|
title: Defender DDF file
|
||||||
description: Defender DDF file
|
description: Defender DDF file
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 39B9E6CF-4857-4199-B3C3-EC740A439F65
|
ms.assetid: 39B9E6CF-4857-4199-B3C3-EC740A439F65
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Defender DDF file
|
# Defender DDF file
|
||||||
|
@ -4,15 +4,12 @@ description: Design a custom configuration service provider
|
|||||||
MS-HAID:
|
MS-HAID:
|
||||||
- 'p\_phDeviceMgmt.designing\_a\_custom\_configuration\_service\_provider'
|
- 'p\_phDeviceMgmt.designing\_a\_custom\_configuration\_service\_provider'
|
||||||
- 'p\_phDeviceMgmt.design\_a\_custom\_windows\_csp'
|
- 'p\_phDeviceMgmt.design\_a\_custom\_windows\_csp'
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 0fff9516-a71a-4036-a57b-503ef1a81a37
|
ms.assetid: 0fff9516-a71a-4036-a57b-503ef1a81a37
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Design a custom configuration service provider
|
# Design a custom configuration service provider
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DevDetail CSP
|
title: DevDetail CSP
|
||||||
description: DevDetail CSP
|
description: DevDetail CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 719bbd2d-508d-439b-b175-0874c7e6c360
|
ms.assetid: 719bbd2d-508d-439b-b175-0874c7e6c360
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DevDetail CSP
|
# DevDetail CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DevDetail DDF file
|
title: DevDetail DDF file
|
||||||
description: DevDetail DDF file
|
description: DevDetail DDF file
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 645fc2b5-2d2c-43b1-9058-26bedbe9f00d
|
ms.assetid: 645fc2b5-2d2c-43b1-9058-26bedbe9f00d
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DevDetail DDF file
|
# DevDetail DDF file
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DeveloperSetup CSP
|
title: DeveloperSetup CSP
|
||||||
description: The DeveloperSetup configuration service provider (CSP) is used to configure developer mode on the device. This CSP was added in the next major update of Windows 10.
|
description: The DeveloperSetup configuration service provider (CSP) is used to configure developer mode on the device. This CSP was added in the next major update of Windows 10.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid:
|
ms.assetid:
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DeveloperSetup CSP
|
# DeveloperSetup CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DeveloperSetup DDF file
|
title: DeveloperSetup DDF file
|
||||||
description: This topic shows the OMA DM device description framework (DDF) for the DeveloperSetup configuration service provider. This CSP was added in Windows 10, version 1703.
|
description: This topic shows the OMA DM device description framework (DDF) for the DeveloperSetup configuration service provider. This CSP was added in Windows 10, version 1703.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid:
|
ms.assetid:
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DeveloperSetup DDF file
|
# DeveloperSetup DDF file
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Device update management
|
title: Device update management
|
||||||
description: In the current device landscape of PC, tablets, phones, and IoT devices, the Mobile Device Management (MDM) solutions are becoming prevalent as a lightweight device management technology.
|
description: In the current device landscape of PC, tablets, phones, and IoT devices, the Mobile Device Management (MDM) solutions are becoming prevalent as a lightweight device management technology.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: C27BAEE7-2890-4FB7-9549-A6EACC790777
|
ms.assetid: C27BAEE7-2890-4FB7-9549-A6EACC790777
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DeviceInstanceService CSP
|
title: DeviceInstanceService CSP
|
||||||
description: DeviceInstanceService CSP
|
description: DeviceInstanceService CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: f113b6bb-6ce1-45ad-b725-1b6610721e2d
|
ms.assetid: f113b6bb-6ce1-45ad-b725-1b6610721e2d
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DeviceInstanceService CSP
|
# DeviceInstanceService CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DeviceLock CSP
|
title: DeviceLock CSP
|
||||||
description: DeviceLock CSP
|
description: DeviceLock CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 9a547efb-738e-4677-95d3-5506d350d8ab
|
ms.assetid: 9a547efb-738e-4677-95d3-5506d350d8ab
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DeviceLock CSP
|
# DeviceLock CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DeviceLock DDF file
|
title: DeviceLock DDF file
|
||||||
description: DeviceLock DDF file
|
description: DeviceLock DDF file
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 46a691b9-6350-4987-bfc7-f8b1eece3ad9
|
ms.assetid: 46a691b9-6350-4987-bfc7-f8b1eece3ad9
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DeviceLock DDF file
|
# DeviceLock DDF file
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DeviceManageability CSP
|
title: DeviceManageability CSP
|
||||||
description: The DeviceManageability configuration service provider (CSP) is used retrieve the general information about MDM configuration capabilities on the device. This CSP was added in Windows 10, version 1607.
|
description: The DeviceManageability configuration service provider (CSP) is used retrieve the general information about MDM configuration capabilities on the device. This CSP was added in Windows 10, version 1607.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: FE563221-D5B5-4EFD-9B60-44FE4066B0D2
|
ms.assetid: FE563221-D5B5-4EFD-9B60-44FE4066B0D2
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DeviceManageability CSP
|
# DeviceManageability CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DeviceManageability DDF
|
title: DeviceManageability DDF
|
||||||
description: This topic shows the OMA DM device description framework (DDF) for the DeviceManageability configuration service provider. This CSP was added in Windows 10, version 1607.
|
description: This topic shows the OMA DM device description framework (DDF) for the DeviceManageability configuration service provider. This CSP was added in Windows 10, version 1607.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: D7FA8D51-95ED-40D2-AA84-DCC4BBC393AB
|
ms.assetid: D7FA8D51-95ED-40D2-AA84-DCC4BBC393AB
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DeviceManageability DDF
|
# DeviceManageability DDF
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DeviceStatus CSP
|
title: DeviceStatus CSP
|
||||||
description: The DeviceStatus configuration service provider is used by the enterprise to keep track of device inventory and query the state of compliance of these devices with their enterprise policies.
|
description: The DeviceStatus configuration service provider is used by the enterprise to keep track of device inventory and query the state of compliance of these devices with their enterprise policies.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 039B2010-9290-4A6E-B77B-B2469B482360
|
ms.assetid: 039B2010-9290-4A6E-B77B-B2469B482360
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DeviceStatus CSP
|
# DeviceStatus CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DeviceStatus DDF
|
title: DeviceStatus DDF
|
||||||
description: This topic shows the OMA DM device description framework (DDF) for the DeviceStatus configuration service provider. DDF files are used only with OMA DM provisioning XML.
|
description: This topic shows the OMA DM device description framework (DDF) for the DeviceStatus configuration service provider. DDF files are used only with OMA DM provisioning XML.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 780DC6B4-48A5-4F74-9F2E-6E0D88902A45
|
ms.assetid: 780DC6B4-48A5-4F74-9F2E-6E0D88902A45
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DeviceStatus DDF
|
# DeviceStatus DDF
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DevInfo CSP
|
title: DevInfo CSP
|
||||||
description: DevInfo CSP
|
description: DevInfo CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: d3eb70db-1ce9-4c72-a13d-651137c1713c
|
ms.assetid: d3eb70db-1ce9-4c72-a13d-651137c1713c
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DevInfo CSP
|
# DevInfo CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DevInfo DDF file
|
title: DevInfo DDF file
|
||||||
description: DevInfo DDF file
|
description: DevInfo DDF file
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: beb07cc6-4133-4c0f-aa05-64db2b4a004f
|
ms.assetid: beb07cc6-4133-4c0f-aa05-64db2b4a004f
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DevInfo DDF file
|
# DevInfo DDF file
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Diagnose MDM failures in Windows 10
|
title: Diagnose MDM failures in Windows 10
|
||||||
description: To help diagnose enrollment or device management issues in Windows 10 devices managed by an MDM server, you can examine the MDM logs collected from the desktop or mobile device. The following sections describe the procedures for collecting MDM logs.
|
description: To help diagnose enrollment or device management issues in Windows 10 devices managed by an MDM server, you can examine the MDM logs collected from the desktop or mobile device. The following sections describe the procedures for collecting MDM logs.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 12D8263B-D839-4B19-9346-31E0CDD0CBF9
|
ms.assetid: 12D8263B-D839-4B19-9346-31E0CDD0CBF9
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Diagnose MDM failures in Windows 10
|
# Diagnose MDM failures in Windows 10
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DiagnosticLog CSP
|
title: DiagnosticLog CSP
|
||||||
description: DiagnosticLog CSP
|
description: DiagnosticLog CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: F76E0056-3ACD-48B2-BEA1-1048C96571C3
|
ms.assetid: F76E0056-3ACD-48B2-BEA1-1048C96571C3
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DiagnosticLog CSP
|
# DiagnosticLog CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DiagnosticLog DDF
|
title: DiagnosticLog DDF
|
||||||
description: DiagnosticLog DDF
|
description: DiagnosticLog DDF
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 9DD75EDA-5913-45B4-9BED-20E30CDEBE16
|
ms.assetid: 9DD75EDA-5913-45B4-9BED-20E30CDEBE16
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DiagnosticLog DDF
|
# DiagnosticLog DDF
|
||||||
|
@ -4,15 +4,12 @@ description: Disconnecting may be initiated either locally by the user from the
|
|||||||
MS-HAID:
|
MS-HAID:
|
||||||
- 'p\_phdevicemgmt.disconnecting\_from\_the\_management\_infrastructure\_\_unenrollment\_'
|
- 'p\_phdevicemgmt.disconnecting\_from\_the\_management\_infrastructure\_\_unenrollment\_'
|
||||||
- 'p\_phDeviceMgmt.disconnecting\_from\_mdm\_unenrollment'
|
- 'p\_phDeviceMgmt.disconnecting\_from\_mdm\_unenrollment'
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 33B2B248-631B-451F-B534-5DA095C4C8E8
|
ms.assetid: 33B2B248-631B-451F-B534-5DA095C4C8E8
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DMAcc CSP
|
title: DMAcc CSP
|
||||||
description: DMAcc CSP
|
description: DMAcc CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 43e73d8a-6617-44e7-8459-5c96f4422e63
|
ms.assetid: 43e73d8a-6617-44e7-8459-5c96f4422e63
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DMAcc CSP
|
# DMAcc CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DMAcc DDF file
|
title: DMAcc DDF file
|
||||||
description: DMAcc DDF file
|
description: DMAcc DDF file
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 44dc99aa-2a85-498b-8f52-a81863765606
|
ms.assetid: 44dc99aa-2a85-498b-8f52-a81863765606
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DMAcc DDF file
|
# DMAcc DDF file
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DMClient CSP
|
title: DMClient CSP
|
||||||
description: The DMClient configuration service provider is used to specify additional enterprise-specific mobile device management configuration settings for identifying the device in the enterprise domain, security mitigation for certificate renewal, and server-triggered enterprise unenrollment.
|
description: The DMClient configuration service provider is used to specify additional enterprise-specific mobile device management configuration settings for identifying the device in the enterprise domain, security mitigation for certificate renewal, and server-triggered enterprise unenrollment.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: a5cf35d9-ced0-4087-a247-225f102f2544
|
ms.assetid: a5cf35d9-ced0-4087-a247-225f102f2544
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DMClient CSP
|
# DMClient CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DMClient DDF file
|
title: DMClient DDF file
|
||||||
description: DMClient DDF file
|
description: DMClient DDF file
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: A21B33AF-DB76-4059-8170-FADF2CB898A0
|
ms.assetid: A21B33AF-DB76-4059-8170-FADF2CB898A0
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DMClient DDF file
|
# DMClient DDF file
|
||||||
|
@ -1,9 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: DMProcessConfigXMLFiltered function
|
title: DMProcessConfigXMLFiltered function
|
||||||
description: Configures phone settings by using OMA Client Provisioning XML.
|
description: Configures phone settings by using OMA Client Provisioning XML.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
Search.Refinement.TopicID: 184
|
Search.Refinement.TopicID: 184
|
||||||
ms.assetid: 31D79901-6206-454C-AE78-9B85A3B3487F
|
ms.assetid: 31D79901-6206-454C-AE78-9B85A3B3487F
|
||||||
keywords: ["DMProcessConfigXMLFiltered function"]
|
keywords: ["DMProcessConfigXMLFiltered function"]
|
||||||
@ -15,11 +12,11 @@ api_location:
|
|||||||
- dmprocessxmlfiltered.dll
|
- dmprocessxmlfiltered.dll
|
||||||
api_type:
|
api_type:
|
||||||
- DllExport
|
- DllExport
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DMProcessConfigXMLFiltered function
|
# DMProcessConfigXMLFiltered function
|
||||||
|
@ -1,14 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: DMSessionActions CSP
|
title: DMSessionActions CSP
|
||||||
description: DMSessionActions CSP
|
description: DMSessionActions CSP
|
||||||
MSHAttr:
|
ms.author: maricia
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.author: windows-hardware-design-content
|
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DMSessionActions CSP
|
# DMSessionActions CSP
|
||||||
|
@ -1,14 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: DMSessionActions DDF file
|
title: DMSessionActions DDF file
|
||||||
description: DMSessionActions DDF file
|
description: DMSessionActions DDF file
|
||||||
MSHAttr:
|
ms.author: maricia
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.author: windows-hardware-design-content
|
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DMSessionActions DDF file
|
# DMSessionActions DDF file
|
||||||
|
@ -1,14 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: DynamicManagement CSP
|
title: DynamicManagement CSP
|
||||||
description: DynamicManagement CSP
|
description: DynamicManagement CSP
|
||||||
MSHAttr:
|
ms.author: maricia
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.author: windows-hardware-design-content
|
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DynamicManagement CSP
|
# DynamicManagement CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: DynamicManagement DDF file
|
title: DynamicManagement DDF file
|
||||||
description: DynamicManagement DDF file
|
description: DynamicManagement DDF file
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 7e266db0-2fd9-4412-b428-4550f41a1738
|
ms.assetid: 7e266db0-2fd9-4412-b428-4550f41a1738
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# DynamicManagement DDF file
|
# DynamicManagement DDF file
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EAP configuration
|
title: EAP configuration
|
||||||
description: The topic provides a step-by-step guide for creating an Extensible Authentication Protocol (EAP) configuration XML for the VPN profile and information about EAP certificate filtering in Windows 10.
|
description: The topic provides a step-by-step guide for creating an Extensible Authentication Protocol (EAP) configuration XML for the VPN profile and information about EAP certificate filtering in Windows 10.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: DD3F2292-4B4C-4430-A57F-922FED2A8FAE
|
ms.assetid: DD3F2292-4B4C-4430-A57F-922FED2A8FAE
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EAP configuration
|
# EAP configuration
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EMAIL2 CSP
|
title: EMAIL2 CSP
|
||||||
description: EMAIL2 CSP
|
description: EMAIL2 CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: bcfc9d98-bc2e-42c6-9b81-0b5bf65ce2b8
|
ms.assetid: bcfc9d98-bc2e-42c6-9b81-0b5bf65ce2b8
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EMAIL2 CSP
|
# EMAIL2 CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EMAIL2 DDF file
|
title: EMAIL2 DDF file
|
||||||
description: EMAIL2 DDF file
|
description: EMAIL2 DDF file
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 7e266db0-2fd9-4412-b428-4550f41a1738
|
ms.assetid: 7e266db0-2fd9-4412-b428-4550f41a1738
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EMAIL2 DDF file
|
# EMAIL2 DDF file
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Enable offline upgrades to Windows 10 for Windows Embedded 8.1 Handheld devices
|
title: Enable offline upgrades to Windows 10 for Windows Embedded 8.1 Handheld devices
|
||||||
description: Like any Windows devices, Windows 10 Mobile devices use Microsoft Update by default to download updates over the Internet.
|
description: Like any Windows devices, Windows 10 Mobile devices use Microsoft Update by default to download updates over the Internet.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: ED3DAF80-847C-462B-BDB1-486577906772
|
ms.assetid: ED3DAF80-847C-462B-BDB1-486577906772
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Enable offline upgrades to Windows 10 for Windows Embedded 8.1 Handheld devices
|
# Enable offline upgrades to Windows 10 for Windows Embedded 8.1 Handheld devices
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Enterprise app management
|
title: Enterprise app management
|
||||||
description: This topic covers one of the key mobile device management (MDM) features in Windows 10 for managing the lifecycle of apps across all of Windows.
|
description: This topic covers one of the key mobile device management (MDM) features in Windows 10 for managing the lifecycle of apps across all of Windows.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 225DEE61-C3E3-4F75-BC79-5068759DFE99
|
ms.assetid: 225DEE61-C3E3-4F75-BC79-5068759DFE99
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Enterprise app management
|
# Enterprise app management
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseAPN CSP
|
title: EnterpriseAPN CSP
|
||||||
description: The EnterpriseAPN configuration service provider is used by the enterprise to provision an APN for the Internet.
|
description: The EnterpriseAPN configuration service provider is used by the enterprise to provision an APN for the Internet.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: E125F6A5-EE44-41B1-A8CC-DF295082E6B2
|
ms.assetid: E125F6A5-EE44-41B1-A8CC-DF295082E6B2
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseAPN CSP
|
# EnterpriseAPN CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseAPN DDF
|
title: EnterpriseAPN DDF
|
||||||
description: EnterpriseAPN DDF
|
description: EnterpriseAPN DDF
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: A953ADEF-4523-425F-926C-48DA62EB9E21
|
ms.assetid: A953ADEF-4523-425F-926C-48DA62EB9E21
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseAPN DDF
|
# EnterpriseAPN DDF
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseAppManagement CSP
|
title: EnterpriseAppManagement CSP
|
||||||
description: EnterpriseAppManagement CSP
|
description: EnterpriseAppManagement CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 698b8bf4-652e-474b-97e4-381031357623
|
ms.assetid: 698b8bf4-652e-474b-97e4-381031357623
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseAppManagement CSP
|
# EnterpriseAppManagement CSP
|
||||||
|
@ -1,14 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseAppVManagement CSP
|
title: EnterpriseAppVManagement CSP
|
||||||
description: EnterpriseAppVManagement CSP
|
description: EnterpriseAppVManagement CSP
|
||||||
MSHAttr:
|
ms.author: maricia
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.author: windows-hardware-design-content
|
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseAppVManagement CSP
|
# EnterpriseAppVManagement CSP
|
||||||
|
@ -1,14 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseAppVManagement DDF file
|
title: EnterpriseAppVManagement DDF file
|
||||||
description: EnterpriseAppVManagement DDF file
|
description: EnterpriseAppVManagement DDF file
|
||||||
MSHAttr:
|
ms.author: maricia
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.author: windows-hardware-design-content
|
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseAppVManagement DDF file
|
# EnterpriseAppVManagement DDF file
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseAssignedAccess CSP
|
title: EnterpriseAssignedAccess CSP
|
||||||
description: EnterpriseAssignedAccess CSP
|
description: EnterpriseAssignedAccess CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 5F88E567-77AA-4822-A0BC-3B31100639AA
|
ms.assetid: 5F88E567-77AA-4822-A0BC-3B31100639AA
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseAssignedAccess CSP
|
# EnterpriseAssignedAccess CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseAssignedAccess DDF
|
title: EnterpriseAssignedAccess DDF
|
||||||
description: EnterpriseAssignedAccess DDF
|
description: EnterpriseAssignedAccess DDF
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 8BD6FB05-E643-4695-99A2-633995884B37
|
ms.assetid: 8BD6FB05-E643-4695-99A2-633995884B37
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseAssignedAccess DDF
|
# EnterpriseAssignedAccess DDF
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseAssignedAccess XSD
|
title: EnterpriseAssignedAccess XSD
|
||||||
description: EnterpriseAssignedAccess XSD
|
description: EnterpriseAssignedAccess XSD
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: BB3B633E-E361-4B95-9D4A-CE6E08D67ADA
|
ms.assetid: BB3B633E-E361-4B95-9D4A-CE6E08D67ADA
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseAssignedAccess XSD
|
# EnterpriseAssignedAccess XSD
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseDataProtection CSP
|
title: EnterpriseDataProtection CSP
|
||||||
description: The EnterpriseDataProtection configuration service provider (CSP) is used to configure Windows Information Protection (WIP) (formerly known as Enterprise Data Protection) specific settings.
|
description: The EnterpriseDataProtection configuration service provider (CSP) is used to configure Windows Information Protection (WIP) (formerly known as Enterprise Data Protection) specific settings.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: E2D4467F-A154-4C00-9208-7798EF3E25B3
|
ms.assetid: E2D4467F-A154-4C00-9208-7798EF3E25B3
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseDataProtection CSP
|
# EnterpriseDataProtection CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseDataProtection DDF file
|
title: EnterpriseDataProtection DDF file
|
||||||
description: The following topic shows the OMA DM device description framework (DDF) for the EnterpriseDataProtection configuration service provider.
|
description: The following topic shows the OMA DM device description framework (DDF) for the EnterpriseDataProtection configuration service provider.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: C6427C52-76F9-4EE0-98F9-DE278529D459
|
ms.assetid: C6427C52-76F9-4EE0-98F9-DE278529D459
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseDataProtection DDF file
|
# EnterpriseDataProtection DDF file
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseDesktopAppManagement CSP
|
title: EnterpriseDesktopAppManagement CSP
|
||||||
description: 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.
|
description: 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.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 2BFF7491-BB01-41BA-9A22-AB209EE59FC5
|
ms.assetid: 2BFF7491-BB01-41BA-9A22-AB209EE59FC5
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseDesktopAppManagement CSP
|
# EnterpriseDesktopAppManagement CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseDesktopAppManagement DDF
|
title: EnterpriseDesktopAppManagement DDF
|
||||||
description: This topic shows the OMA DM device description framework (DDF) for the EnterpriseDesktopAppManagement configuration service provider.
|
description: This topic shows the OMA DM device description framework (DDF) for the EnterpriseDesktopAppManagement configuration service provider.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: EF448602-65AC-4D59-A0E8-779876542FE3
|
ms.assetid: EF448602-65AC-4D59-A0E8-779876542FE3
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseDesktopAppManagement DDF
|
# EnterpriseDesktopAppManagement DDF
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseDesktopAppManagement XSD
|
title: EnterpriseDesktopAppManagement XSD
|
||||||
description: This topic contains the XSD schema file for the EnterpriseDesktopAppManagement configuration service provider’s DownloadInstall parameter.
|
description: This topic contains the XSD schema file for the EnterpriseDesktopAppManagement configuration service provider’s DownloadInstall parameter.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 60980257-4F48-4A68-8E8E-1EF0A3F090E2
|
ms.assetid: 60980257-4F48-4A68-8E8E-1EF0A3F090E2
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseDesktopAppManagement XSD
|
# EnterpriseDesktopAppManagement XSD
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseExt CSP
|
title: EnterpriseExt CSP
|
||||||
description: EnterpriseExt CSP
|
description: EnterpriseExt CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: ACA5CD79-BBD5-4DD1-86DA-0285B93982BD
|
ms.assetid: ACA5CD79-BBD5-4DD1-86DA-0285B93982BD
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseExt CSP
|
# EnterpriseExt CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseExt DDF
|
title: EnterpriseExt DDF
|
||||||
description: EnterpriseExt DDF
|
description: EnterpriseExt DDF
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 71BF81D4-FBEC-4B03-BF99-F7A5EDD4F91B
|
ms.assetid: 71BF81D4-FBEC-4B03-BF99-F7A5EDD4F91B
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseExt DDF
|
# EnterpriseExt DDF
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseExtFileSystem CSP
|
title: EnterpriseExtFileSystem CSP
|
||||||
description: EnterpriseExtFileSystem CSP
|
description: EnterpriseExtFileSystem CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: F773AD72-A800-481A-A9E2-899BA56F4426
|
ms.assetid: F773AD72-A800-481A-A9E2-899BA56F4426
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseExtFileSystem CSP
|
# EnterpriseExtFileSystem CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseExtFileSystem DDF
|
title: EnterpriseExtFileSystem DDF
|
||||||
description: EnterpriseExtFileSystem DDF
|
description: EnterpriseExtFileSystem DDF
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 2D292E4B-15EE-4AEB-8884-6FEE8B92D2D1
|
ms.assetid: 2D292E4B-15EE-4AEB-8884-6FEE8B92D2D1
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseExtFileSystem DDF
|
# EnterpriseExtFileSystem DDF
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseModernAppManagement CSP
|
title: EnterpriseModernAppManagement CSP
|
||||||
description: EnterpriseModernAppManagement CSP
|
description: EnterpriseModernAppManagement CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 9DD0741A-A229-41A0-A85A-93E185207C42
|
ms.assetid: 9DD0741A-A229-41A0-A85A-93E185207C42
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseModernAppManagement CSP
|
# EnterpriseModernAppManagement CSP
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseModernAppManagement DDF
|
title: EnterpriseModernAppManagement DDF
|
||||||
description: EnterpriseModernAppManagement DDF
|
description: EnterpriseModernAppManagement DDF
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid:
|
ms.assetid:
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseModernAppManagement DDF
|
# EnterpriseModernAppManagement DDF
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: EnterpriseModernAppManagement XSD
|
title: EnterpriseModernAppManagement XSD
|
||||||
description: Here is the XSD for the application parameters.
|
description: Here is the XSD for the application parameters.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: D393D094-25E5-4E66-A60F-B59CC312BF57
|
ms.assetid: D393D094-25E5-4E66-A60F-B59CC312BF57
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# EnterpriseModernAppManagement XSD
|
# EnterpriseModernAppManagement XSD
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Federated authentication device enrollment
|
title: Federated authentication device enrollment
|
||||||
description: This section provides an example of the mobile device enrollment protocol using federated authentication policy.
|
description: This section provides an example of the mobile device enrollment protocol using federated authentication policy.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 049ECA6E-1AF5-4CB2-8F1C-A5F22D722DAA
|
ms.assetid: 049ECA6E-1AF5-4CB2-8F1C-A5F22D722DAA
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Federated authentication device enrollment
|
# Federated authentication device enrollment
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: FileSystem CSP
|
title: FileSystem CSP
|
||||||
description: FileSystem CSP
|
description: FileSystem CSP
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: 9117ee16-ca7a-4efa-9270-c9ac8547e541
|
ms.assetid: 9117ee16-ca7a-4efa-9270-c9ac8547e541
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# FileSystem CSP
|
# FileSystem CSP
|
||||||
|
@ -4,15 +4,12 @@ description: The Get Inventory operation retrieves information from the Windows
|
|||||||
MS-HAID:
|
MS-HAID:
|
||||||
- 'p\_phdevicemgmt.get\_seatblock'
|
- 'p\_phdevicemgmt.get\_seatblock'
|
||||||
- 'p\_phDeviceMgmt.get\_inventory'
|
- 'p\_phDeviceMgmt.get\_inventory'
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: C5485722-FC49-4358-A097-74169B204E74
|
ms.assetid: C5485722-FC49-4358-A097-74169B204E74
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Get Inventory
|
# Get Inventory
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Get localized product details
|
title: Get localized product details
|
||||||
description: The Get localized product details operation retrieves the localization information of a product from the Windows Store for Business.
|
description: The Get localized product details operation retrieves the localization information of a product from the Windows Store for Business.
|
||||||
MSHAttr:
|
|
||||||
- 'PreferredSiteName:MSDN'
|
|
||||||
- 'PreferredLib:/library/windows/hardware'
|
|
||||||
ms.assetid: EF6AFCA9-8699-46C9-A3BB-CD2750C07901
|
ms.assetid: EF6AFCA9-8699-46C9-A3BB-CD2750C07901
|
||||||
ms.author: windows-hardware-design-content
|
ms.author: maricia
|
||||||
ms.date: 05/02/2017
|
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.prod: windows-hardware
|
ms.prod: w10
|
||||||
ms.technology: windows-oem
|
ms.technology: windows
|
||||||
|
author: nickbrower
|
||||||
---
|
---
|
||||||
|
|
||||||
# Get localized product details
|
# Get localized product details
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user