diff --git a/windows/access-protection/enterprise-certificate-pinning.md b/windows/access-protection/enterprise-certificate-pinning.md index c1713b7bac..130251d4b2 100644 --- a/windows/access-protection/enterprise-certificate-pinning.md +++ b/windows/access-protection/enterprise-certificate-pinning.md @@ -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. 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** - - Specifies when the Pin Rules will expire. - Either is required. - **NextUpdate** takes precedence if both are specified. - - **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. +| Attribute | Description | Required | +|-----------|-------------|----------| +| **Duration** or **NextUpdate** | Specifies when the Pin Rules will expire. Either is required. **NextUpdate** takes precedence if both are specified.
**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. | 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). | No. | #### PinRule Element -The **PinRule** element can have the following attributes: +The **PinRule** element can have the following attributes. -- **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). - - **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. +| Attribute | Description | Required | +|-----------|-------------|----------| +| **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.| +| **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. | No. | +| **Log** | A Boolean value represent as string that equals **true** or **false**. By default, logging is enabled (**true**). | No. | #### Certificate element -The **Certificate** element can have the following attributes: +The **Certificate** element can have the following attributes. -- **File** - - Path to a file containing one or more certificates. - Where the certificate(s) can be encoded as: - - single certificate - - p7b - - 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. +| Attribute | Description | Required | +|-----------|-------------|----------| +| **File** | Path to a file containing one or more certificates. Where the certificate(s) can be encoded as:
- single certificate
- p7b
- sst
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). | +| **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). | +| **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 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). | +| **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).| No.| #### Site element -The **Site** element can have the following attributes: +The **Site** element can have the following attributes. -- **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: - - 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. +| Attribute | Description | Required | +|-----------|-------------|----------| +| **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:
- 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". | 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.| No.| ### 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. -```code -HKLM\SOFTWARE\Microsoft\Cryptography\OID\EncodingType0\CertDllCreateCertificateChainEngine\Config -``` - | Name | Value | |------|-------| | Key | HKLM\SOFTWARE\Microsoft\Cryptography\OID\EncodingType0\CertDllCreateCertificateChainEngine\Config | diff --git a/windows/client-management/mdm/activesync-csp.md b/windows/client-management/mdm/activesync-csp.md index 11681a3787..a395891a14 100644 --- a/windows/client-management/mdm/activesync-csp.md +++ b/windows/client-management/mdm/activesync-csp.md @@ -1,15 +1,12 @@ --- title: ActiveSync CSP description: ActiveSync CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: c65093ef-bd36-4f32-9dab-edb7bcfb3188 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ActiveSync CSP diff --git a/windows/client-management/mdm/activesync-ddf-file.md b/windows/client-management/mdm/activesync-ddf-file.md index 691947b55a..8aa90d6d7c 100644 --- a/windows/client-management/mdm/activesync-ddf-file.md +++ b/windows/client-management/mdm/activesync-ddf-file.md @@ -1,15 +1,12 @@ --- title: ActiveSync DDF file description: ActiveSync DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: c4cd4816-ad8f-45b2-9b81-8abb18254096 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ActiveSync DDF file diff --git a/windows/client-management/mdm/add-an-azure-ad-tenant-and-azure-ad-subscription.md b/windows/client-management/mdm/add-an-azure-ad-tenant-and-azure-ad-subscription.md index 3cea96c4cd..e1c6986fe5 100644 --- a/windows/client-management/mdm/add-an-azure-ad-tenant-and-azure-ad-subscription.md +++ b/windows/client-management/mdm/add-an-azure-ad-tenant-and-azure-ad-subscription.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 36D94BEC-A6D8-47D2-A547-EBD7B7D163FA -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Add an Azure AD tenant and Azure AD subscription diff --git a/windows/client-management/mdm/alljoynmanagement-csp.md b/windows/client-management/mdm/alljoynmanagement-csp.md index 196534eb9b..0746ed4175 100644 --- a/windows/client-management/mdm/alljoynmanagement-csp.md +++ b/windows/client-management/mdm/alljoynmanagement-csp.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 468E0EE5-EED3-48FF-91C0-89F9D159AA8C -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # AllJoynManagement CSP diff --git a/windows/client-management/mdm/alljoynmanagement-ddf.md b/windows/client-management/mdm/alljoynmanagement-ddf.md index d7de78a5f4..ebc2840da3 100644 --- a/windows/client-management/mdm/alljoynmanagement-ddf.md +++ b/windows/client-management/mdm/alljoynmanagement-ddf.md @@ -1,15 +1,12 @@ --- title: AllJoynManagement DDF description: AllJoynManagement DDF -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 540C2E60-A041-4749-A027-BBAF0BB046E4 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # AllJoynManagement DDF diff --git a/windows/client-management/mdm/application-csp.md b/windows/client-management/mdm/application-csp.md index 9ed4ad4239..463b2e0c07 100644 --- a/windows/client-management/mdm/application-csp.md +++ b/windows/client-management/mdm/application-csp.md @@ -1,15 +1,12 @@ --- title: APPLICATION configuration service provider description: APPLICATION configuration service provider -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 0705b5e9-a1e7-4d70-a73d-7f758ffd8099 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # APPLICATION configuration service provider diff --git a/windows/client-management/mdm/applicationrestrictions-xsd.md b/windows/client-management/mdm/applicationrestrictions-xsd.md index c1c0a561a1..312d90524e 100644 --- a/windows/client-management/mdm/applicationrestrictions-xsd.md +++ b/windows/client-management/mdm/applicationrestrictions-xsd.md @@ -1,15 +1,12 @@ --- title: ApplicationRestrictions XSD 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.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ApplicationRestrictions XSD diff --git a/windows/client-management/mdm/applocker-csp.md b/windows/client-management/mdm/applocker-csp.md index a8104b8cd5..a73544002c 100644 --- a/windows/client-management/mdm/applocker-csp.md +++ b/windows/client-management/mdm/applocker-csp.md @@ -1,15 +1,12 @@ --- title: AppLocker CSP description: AppLocker CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 32FEA2C9-3CAD-40C9-8E4F-E3C69637580F -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # AppLocker CSP diff --git a/windows/client-management/mdm/applocker-ddf-file.md b/windows/client-management/mdm/applocker-ddf-file.md index d743bc90b9..e332216b02 100644 --- a/windows/client-management/mdm/applocker-ddf-file.md +++ b/windows/client-management/mdm/applocker-ddf-file.md @@ -1,15 +1,12 @@ --- title: AppLocker DDF file description: AppLocker DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 79E199E0-5454-413A-A57A-B536BDA22496 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # AppLocker DDF file diff --git a/windows/client-management/mdm/applocker-xsd.md b/windows/client-management/mdm/applocker-xsd.md index 8a5ed59bcb..1d578d006d 100644 --- a/windows/client-management/mdm/applocker-xsd.md +++ b/windows/client-management/mdm/applocker-xsd.md @@ -1,15 +1,12 @@ --- title: AppLocker XSD description: Here's the XSD for the AppLocker CSP. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 70CF48DD-AD7D-4BCF-854F-A41BFD95F876 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # AppLocker XSD diff --git a/windows/client-management/mdm/appv-deploy-and-config.md b/windows/client-management/mdm/appv-deploy-and-config.md index 1583fe4479..d7f18cf787 100644 --- a/windows/client-management/mdm/appv-deploy-and-config.md +++ b/windows/client-management/mdm/appv-deploy-and-config.md @@ -1,14 +1,11 @@ --- title: Deploy and configure App-V apps using MDM description: Deploy and configure App-V apps using MDM -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Deploy and configure App-V apps using MDM diff --git a/windows/client-management/mdm/assign-seats.md b/windows/client-management/mdm/assign-seats.md index 0e0aedaff6..b39d6d9cdf 100644 --- a/windows/client-management/mdm/assign-seats.md +++ b/windows/client-management/mdm/assign-seats.md @@ -1,15 +1,12 @@ --- title: Assign seat 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.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Assign seat diff --git a/windows/client-management/mdm/assignedaccess-csp.md b/windows/client-management/mdm/assignedaccess-csp.md index bc9933dc97..aad87ff0e5 100644 --- a/windows/client-management/mdm/assignedaccess-csp.md +++ b/windows/client-management/mdm/assignedaccess-csp.md @@ -1,15 +1,12 @@ --- title: AssignedAccess CSP 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.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # AssignedAccess CSP diff --git a/windows/client-management/mdm/assignedaccess-ddf.md b/windows/client-management/mdm/assignedaccess-ddf.md index 7bff2aad34..4f2fae2306 100644 --- a/windows/client-management/mdm/assignedaccess-ddf.md +++ b/windows/client-management/mdm/assignedaccess-ddf.md @@ -1,15 +1,12 @@ --- title: AssignedAccess DDF description: AssignedAccess DDF -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 224FADDB-0EFD-4E5A-AE20-1BD4ABE24306 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # AssignedAccess DDF diff --git a/windows/client-management/mdm/azure-active-directory-integration-with-mdm.md b/windows/client-management/mdm/azure-active-directory-integration-with-mdm.md index 9c47fe110e..ebdb1d406e 100644 --- a/windows/client-management/mdm/azure-active-directory-integration-with-mdm.md +++ b/windows/client-management/mdm/azure-active-directory-integration-with-mdm.md @@ -1,15 +1,12 @@ --- title: Azure Active Directory integration with MDM 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.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- diff --git a/windows/client-management/mdm/bitlocker-csp.md b/windows/client-management/mdm/bitlocker-csp.md index 1c046fef02..d7d5beca50 100644 --- a/windows/client-management/mdm/bitlocker-csp.md +++ b/windows/client-management/mdm/bitlocker-csp.md @@ -1,14 +1,11 @@ --- title: BitLocker CSP description: BitLocker CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # BitLocker CSP diff --git a/windows/client-management/mdm/bitlocker-ddf-file.md b/windows/client-management/mdm/bitlocker-ddf-file.md index dd2461a0fe..2b0491ab35 100644 --- a/windows/client-management/mdm/bitlocker-ddf-file.md +++ b/windows/client-management/mdm/bitlocker-ddf-file.md @@ -1,14 +1,11 @@ --- title: BitLocker DDF file description: BitLocker DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # BitLocker DDF file diff --git a/windows/client-management/mdm/bootstrap-csp.md b/windows/client-management/mdm/bootstrap-csp.md index 11a4e027aa..86259803e4 100644 --- a/windows/client-management/mdm/bootstrap-csp.md +++ b/windows/client-management/mdm/bootstrap-csp.md @@ -1,15 +1,12 @@ --- title: BOOTSTRAP CSP description: BOOTSTRAP CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: b8acbddc-347f-4543-a45b-ad2ffae3ffd0 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # BOOTSTRAP CSP diff --git a/windows/client-management/mdm/browserfavorite-csp.md b/windows/client-management/mdm/browserfavorite-csp.md index d14fdefbb2..e762d03a4f 100644 --- a/windows/client-management/mdm/browserfavorite-csp.md +++ b/windows/client-management/mdm/browserfavorite-csp.md @@ -1,15 +1,12 @@ --- title: BrowserFavorite CSP description: BrowserFavorite CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 5d2351ff-2d6a-4273-9b09-224623723cbf -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # BrowserFavorite CSP diff --git a/windows/client-management/mdm/bulk-assign-and-reclaim-seats-from-user.md b/windows/client-management/mdm/bulk-assign-and-reclaim-seats-from-user.md index b148b5db51..3d370d247f 100644 --- a/windows/client-management/mdm/bulk-assign-and-reclaim-seats-from-user.md +++ b/windows/client-management/mdm/bulk-assign-and-reclaim-seats-from-user.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 99E2F37D-1FF3-4511-8969-19571656780A -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Bulk assign and reclaim seats from users diff --git a/windows/client-management/mdm/bulk-enrollment-using-windows-provisioning-tool.md b/windows/client-management/mdm/bulk-enrollment-using-windows-provisioning-tool.md index 4ce31253a5..dca0fac617 100644 --- a/windows/client-management/mdm/bulk-enrollment-using-windows-provisioning-tool.md +++ b/windows/client-management/mdm/bulk-enrollment-using-windows-provisioning-tool.md @@ -4,15 +4,12 @@ description: Bulk enrollment is an efficient way to set up a large number of dev MS-HAID: - 'p\_phdevicemgmt.bulk\_enrollment' - 'p\_phDeviceMgmt.bulk\_enrollment\_using\_Windows\_provisioning\_tool' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: DEB98FF3-CC5C-47A1-9277-9EF939716C87 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- diff --git a/windows/client-management/mdm/cellularsettings-csp.md b/windows/client-management/mdm/cellularsettings-csp.md index 10e529e3a5..2eb3f56669 100644 --- a/windows/client-management/mdm/cellularsettings-csp.md +++ b/windows/client-management/mdm/cellularsettings-csp.md @@ -1,15 +1,12 @@ --- title: CellularSettings CSP description: CellularSettings CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: ce8b6f16-37ca-4aaf-98b0-306d12e326df -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # CellularSettings CSP diff --git a/windows/client-management/mdm/certificate-authentication-device-enrollment.md b/windows/client-management/mdm/certificate-authentication-device-enrollment.md index 367df2f366..06d6f265b6 100644 --- a/windows/client-management/mdm/certificate-authentication-device-enrollment.md +++ b/windows/client-management/mdm/certificate-authentication-device-enrollment.md @@ -1,15 +1,12 @@ --- title: Certificate authentication device enrollment 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.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Certificate authentication device enrollment diff --git a/windows/client-management/mdm/certificate-renewal-windows-mdm.md b/windows/client-management/mdm/certificate-renewal-windows-mdm.md index 0bf2184006..03875bfea6 100644 --- a/windows/client-management/mdm/certificate-renewal-windows-mdm.md +++ b/windows/client-management/mdm/certificate-renewal-windows-mdm.md @@ -4,15 +4,12 @@ description: The enrolled client certificate expires after a period of use. MS-HAID: - 'p\_phdevicemgmt.certificate\_renewal' - 'p\_phDeviceMgmt.certificate\_renewal\_windows\_mdm' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: F910C50C-FF67-40B0-AAB0-CA7CE02A9619 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Certificate Renewal diff --git a/windows/client-management/mdm/certificatestore-csp.md b/windows/client-management/mdm/certificatestore-csp.md index edb293593a..20bda706fb 100644 --- a/windows/client-management/mdm/certificatestore-csp.md +++ b/windows/client-management/mdm/certificatestore-csp.md @@ -1,15 +1,12 @@ --- title: CertificateStore CSP description: CertificateStore CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 0fe28629-3cc3-42a0-91b3-3624c8462fd3 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # CertificateStore CSP diff --git a/windows/client-management/mdm/certificatestore-ddf-file.md b/windows/client-management/mdm/certificatestore-ddf-file.md index c13145b854..dce1073030 100644 --- a/windows/client-management/mdm/certificatestore-ddf-file.md +++ b/windows/client-management/mdm/certificatestore-ddf-file.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: D9A12D4E-3122-45C3-AD12-CC4FFAEC08B8 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # CertificateStore DDF file diff --git a/windows/client-management/mdm/cleanpc-csp.md b/windows/client-management/mdm/cleanpc-csp.md index f74ca54b1e..4f2d5cc211 100644 --- a/windows/client-management/mdm/cleanpc-csp.md +++ b/windows/client-management/mdm/cleanpc-csp.md @@ -1,14 +1,11 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # CleanPC CSP diff --git a/windows/client-management/mdm/cleanpc-ddf.md b/windows/client-management/mdm/cleanpc-ddf.md index ffee599925..cfbd44cc65 100644 --- a/windows/client-management/mdm/cleanpc-ddf.md +++ b/windows/client-management/mdm/cleanpc-ddf.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: A2182898-1577-4675-BAE5-2A3A9C2AAC9B -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # CleanPC DDF diff --git a/windows/client-management/mdm/clientcertificateinstall-csp.md b/windows/client-management/mdm/clientcertificateinstall-csp.md index 32c811f242..6391e50c7d 100644 --- a/windows/client-management/mdm/clientcertificateinstall-csp.md +++ b/windows/client-management/mdm/clientcertificateinstall-csp.md @@ -1,15 +1,12 @@ --- title: ClientCertificateInstall CSP description: ClientCertificateInstall CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: B624EB73-2972-47F2-9D7E-826D641BF8A7 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ClientCertificateInstall CSP diff --git a/windows/client-management/mdm/clientcertificateinstall-ddf-file.md b/windows/client-management/mdm/clientcertificateinstall-ddf-file.md index ffc094694c..d94173af03 100644 --- a/windows/client-management/mdm/clientcertificateinstall-ddf-file.md +++ b/windows/client-management/mdm/clientcertificateinstall-ddf-file.md @@ -1,15 +1,12 @@ --- title: ClientCertificateInstall DDF file description: ClientCertificateInstall DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 7F65D045-A750-4CDE-A1CE-7D152AA060CA -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ClientCertificateInstall DDF file diff --git a/windows/client-management/mdm/cm-cellularentries-csp.md b/windows/client-management/mdm/cm-cellularentries-csp.md index 49a14d9096..94a6e27f51 100644 --- a/windows/client-management/mdm/cm-cellularentries-csp.md +++ b/windows/client-management/mdm/cm-cellularentries-csp.md @@ -1,15 +1,12 @@ --- title: CM\_CellularEntries CSP description: CM\_CellularEntries CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: f8dac9ef-b709-4b76-b6f5-34c2e6a3c847 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # CM\_CellularEntries CSP diff --git a/windows/client-management/mdm/cm-proxyentries-csp.md b/windows/client-management/mdm/cm-proxyentries-csp.md index 0b449eaa36..693b4feb34 100644 --- a/windows/client-management/mdm/cm-proxyentries-csp.md +++ b/windows/client-management/mdm/cm-proxyentries-csp.md @@ -1,15 +1,12 @@ --- title: CM\_ProxyEntries CSP description: CM\_ProxyEntries CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: f4c3dc71-c85a-4c68-9ce9-19f408ff7a0a -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # CM\_ProxyEntries CSP diff --git a/windows/client-management/mdm/cmpolicy-csp.md b/windows/client-management/mdm/cmpolicy-csp.md index baacc5ed3d..e83953965b 100644 --- a/windows/client-management/mdm/cmpolicy-csp.md +++ b/windows/client-management/mdm/cmpolicy-csp.md @@ -1,15 +1,12 @@ --- title: CMPolicy CSP description: CMPolicy CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 62623915-9747-4eb1-8027-449827b85e6b -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # CMPolicy CSP diff --git a/windows/client-management/mdm/cmpolicyenterprise-csp.md b/windows/client-management/mdm/cmpolicyenterprise-csp.md index 93a0476d26..a3c9b663bf 100644 --- a/windows/client-management/mdm/cmpolicyenterprise-csp.md +++ b/windows/client-management/mdm/cmpolicyenterprise-csp.md @@ -1,15 +1,12 @@ --- title: CMPolicyEnterprise CSP description: CMPolicyEnterprise CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: A0BE3458-ABED-4F80-B467-F842157B94BF -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # CMPolicyEnterprise CSP diff --git a/windows/client-management/mdm/cmpolicyenterprise-ddf-file.md b/windows/client-management/mdm/cmpolicyenterprise-ddf-file.md index 0b3d130038..6305ea17c3 100644 --- a/windows/client-management/mdm/cmpolicyenterprise-ddf-file.md +++ b/windows/client-management/mdm/cmpolicyenterprise-ddf-file.md @@ -1,15 +1,12 @@ --- title: CMPolicyEnterprise DDF file description: CMPolicyEnterprise DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 065EF07A-0CF3-4EE5-B620-3464A75B7EED -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # CMPolicyEnterprise DDF file diff --git a/windows/client-management/mdm/configuration-service-provider-reference.md b/windows/client-management/mdm/configuration-service-provider-reference.md index 831d3e7761..f92fff6839 100644 --- a/windows/client-management/mdm/configuration-service-provider-reference.md +++ b/windows/client-management/mdm/configuration-service-provider-reference.md @@ -1,22 +1,25 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 71823658-951f-4163-9c40-c4d4adceaaec -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # 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. -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. @@ -2429,4 +2432,55 @@ Footnotes: - [RootCATrustedCertificates CSP](rootcacertificates-csp.md) - [Update CSP](update-csp.md) - [VPNv2 CSP](vpnv2-csp.md) -- [WiFi CSP](wifi-csp.md) \ No newline at end of file +- [WiFi CSP](wifi-csp.md) + +## 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) diff --git a/windows/client-management/mdm/create-a-custom-configuration-service-provider.md b/windows/client-management/mdm/create-a-custom-configuration-service-provider.md index c2611732f7..1d424f8364 100644 --- a/windows/client-management/mdm/create-a-custom-configuration-service-provider.md +++ b/windows/client-management/mdm/create-a-custom-configuration-service-provider.md @@ -1,15 +1,12 @@ --- title: 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.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Create a custom configuration service provider diff --git a/windows/client-management/mdm/customdeviceui-csp.md b/windows/client-management/mdm/customdeviceui-csp.md index 383d5c9222..955159f333 100644 --- a/windows/client-management/mdm/customdeviceui-csp.md +++ b/windows/client-management/mdm/customdeviceui-csp.md @@ -1,15 +1,12 @@ --- title: CustomDeviceUI CSP description: CustomDeviceUI CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 20ED1867-7B9E-4455-B397-53B8B15C95A3 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # CustomDeviceUI CSP diff --git a/windows/client-management/mdm/customdeviceui-ddf.md b/windows/client-management/mdm/customdeviceui-ddf.md index 062cbc615c..d44a97a49e 100644 --- a/windows/client-management/mdm/customdeviceui-ddf.md +++ b/windows/client-management/mdm/customdeviceui-ddf.md @@ -1,15 +1,12 @@ --- title: CustomDeviceUI DDF description: CustomDeviceUI DDF -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: E6D6B902-C57C-48A6-9654-CCBA3898455E -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # CustomDeviceUI DDF diff --git a/windows/client-management/mdm/data-structures-windows-store-for-business.md b/windows/client-management/mdm/data-structures-windows-store-for-business.md index 0232b01dbe..18b093df38 100644 --- a/windows/client-management/mdm/data-structures-windows-store-for-business.md +++ b/windows/client-management/mdm/data-structures-windows-store-for-business.md @@ -3,16 +3,13 @@ title: Data structures for Windows Store for Business MS-HAID: - 'p\_phdevicemgmt.business\_store\_data\_structures' - 'p\_phDeviceMgmt.data\_structures\_windows\_store\_for\_business' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: ABE44EC8-CBE5-4775-BA8A-4564CB73531B description: -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Data structures for Windows Store for Business diff --git a/windows/client-management/mdm/defender-csp.md b/windows/client-management/mdm/defender-csp.md index 4bd4c9f828..71e91e480e 100644 --- a/windows/client-management/mdm/defender-csp.md +++ b/windows/client-management/mdm/defender-csp.md @@ -1,15 +1,12 @@ --- title: Defender CSP description: Defender CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 481AA74F-08B2-4A32-B95D-5A3FD05B335C -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Defender CSP diff --git a/windows/client-management/mdm/defender-ddf.md b/windows/client-management/mdm/defender-ddf.md index 007b3ddb41..f6856761c6 100644 --- a/windows/client-management/mdm/defender-ddf.md +++ b/windows/client-management/mdm/defender-ddf.md @@ -1,15 +1,12 @@ --- title: Defender DDF file description: Defender DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 39B9E6CF-4857-4199-B3C3-EC740A439F65 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Defender DDF file diff --git a/windows/client-management/mdm/design-a-custom-windows-csp.md b/windows/client-management/mdm/design-a-custom-windows-csp.md index a774358ba9..ed969ccbee 100644 --- a/windows/client-management/mdm/design-a-custom-windows-csp.md +++ b/windows/client-management/mdm/design-a-custom-windows-csp.md @@ -4,15 +4,12 @@ description: Design a custom configuration service provider MS-HAID: - 'p\_phDeviceMgmt.designing\_a\_custom\_configuration\_service\_provider' - 'p\_phDeviceMgmt.design\_a\_custom\_windows\_csp' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 0fff9516-a71a-4036-a57b-503ef1a81a37 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Design a custom configuration service provider diff --git a/windows/client-management/mdm/devdetail-csp.md b/windows/client-management/mdm/devdetail-csp.md index 7995dfe17d..40ee770991 100644 --- a/windows/client-management/mdm/devdetail-csp.md +++ b/windows/client-management/mdm/devdetail-csp.md @@ -1,15 +1,12 @@ --- title: DevDetail CSP description: DevDetail CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 719bbd2d-508d-439b-b175-0874c7e6c360 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DevDetail CSP diff --git a/windows/client-management/mdm/devdetail-ddf-file.md b/windows/client-management/mdm/devdetail-ddf-file.md index 44978a8d9f..e7fbbcac7a 100644 --- a/windows/client-management/mdm/devdetail-ddf-file.md +++ b/windows/client-management/mdm/devdetail-ddf-file.md @@ -1,15 +1,12 @@ --- title: DevDetail DDF file description: DevDetail DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 645fc2b5-2d2c-43b1-9058-26bedbe9f00d -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DevDetail DDF file diff --git a/windows/client-management/mdm/developersetup-csp.md b/windows/client-management/mdm/developersetup-csp.md index 2d0adc299e..1a00b5f67c 100644 --- a/windows/client-management/mdm/developersetup-csp.md +++ b/windows/client-management/mdm/developersetup-csp.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DeveloperSetup CSP diff --git a/windows/client-management/mdm/developersetup-ddf.md b/windows/client-management/mdm/developersetup-ddf.md index b5f6b24d0a..b9a3348cca 100644 --- a/windows/client-management/mdm/developersetup-ddf.md +++ b/windows/client-management/mdm/developersetup-ddf.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DeveloperSetup DDF file diff --git a/windows/client-management/mdm/device-update-management.md b/windows/client-management/mdm/device-update-management.md index 4b038d4122..724d2abe69 100644 --- a/windows/client-management/mdm/device-update-management.md +++ b/windows/client-management/mdm/device-update-management.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: C27BAEE7-2890-4FB7-9549-A6EACC790777 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- diff --git a/windows/client-management/mdm/deviceinstanceservice-csp.md b/windows/client-management/mdm/deviceinstanceservice-csp.md index d79ad2c02d..55339fb966 100644 --- a/windows/client-management/mdm/deviceinstanceservice-csp.md +++ b/windows/client-management/mdm/deviceinstanceservice-csp.md @@ -1,15 +1,12 @@ --- title: DeviceInstanceService CSP description: DeviceInstanceService CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: f113b6bb-6ce1-45ad-b725-1b6610721e2d -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DeviceInstanceService CSP diff --git a/windows/client-management/mdm/devicelock-csp.md b/windows/client-management/mdm/devicelock-csp.md index 38770ab2e9..47a36d95c3 100644 --- a/windows/client-management/mdm/devicelock-csp.md +++ b/windows/client-management/mdm/devicelock-csp.md @@ -1,15 +1,12 @@ --- title: DeviceLock CSP description: DeviceLock CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 9a547efb-738e-4677-95d3-5506d350d8ab -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DeviceLock CSP diff --git a/windows/client-management/mdm/devicelock-ddf-file.md b/windows/client-management/mdm/devicelock-ddf-file.md index b5e4ffdda4..466bcbbf38 100644 --- a/windows/client-management/mdm/devicelock-ddf-file.md +++ b/windows/client-management/mdm/devicelock-ddf-file.md @@ -1,15 +1,12 @@ --- title: DeviceLock DDF file description: DeviceLock DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 46a691b9-6350-4987-bfc7-f8b1eece3ad9 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DeviceLock DDF file diff --git a/windows/client-management/mdm/devicemanageability-csp.md b/windows/client-management/mdm/devicemanageability-csp.md index 32076d5301..8adc363d59 100644 --- a/windows/client-management/mdm/devicemanageability-csp.md +++ b/windows/client-management/mdm/devicemanageability-csp.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: FE563221-D5B5-4EFD-9B60-44FE4066B0D2 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DeviceManageability CSP diff --git a/windows/client-management/mdm/devicemanageability-ddf.md b/windows/client-management/mdm/devicemanageability-ddf.md index e09aa33beb..1adb50855e 100644 --- a/windows/client-management/mdm/devicemanageability-ddf.md +++ b/windows/client-management/mdm/devicemanageability-ddf.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: D7FA8D51-95ED-40D2-AA84-DCC4BBC393AB -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DeviceManageability DDF diff --git a/windows/client-management/mdm/devicestatus-csp.md b/windows/client-management/mdm/devicestatus-csp.md index 5402d8bf31..e89043b5c1 100644 --- a/windows/client-management/mdm/devicestatus-csp.md +++ b/windows/client-management/mdm/devicestatus-csp.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 039B2010-9290-4A6E-B77B-B2469B482360 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DeviceStatus CSP diff --git a/windows/client-management/mdm/devicestatus-ddf.md b/windows/client-management/mdm/devicestatus-ddf.md index 54ca1a523e..b0e6ad935c 100644 --- a/windows/client-management/mdm/devicestatus-ddf.md +++ b/windows/client-management/mdm/devicestatus-ddf.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 780DC6B4-48A5-4F74-9F2E-6E0D88902A45 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DeviceStatus DDF diff --git a/windows/client-management/mdm/devinfo-csp.md b/windows/client-management/mdm/devinfo-csp.md index 221125f2b6..b11d4a12cf 100644 --- a/windows/client-management/mdm/devinfo-csp.md +++ b/windows/client-management/mdm/devinfo-csp.md @@ -1,15 +1,12 @@ --- title: DevInfo CSP description: DevInfo CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: d3eb70db-1ce9-4c72-a13d-651137c1713c -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DevInfo CSP diff --git a/windows/client-management/mdm/devinfo-ddf-file.md b/windows/client-management/mdm/devinfo-ddf-file.md index 8e41569f6f..0ee45fd363 100644 --- a/windows/client-management/mdm/devinfo-ddf-file.md +++ b/windows/client-management/mdm/devinfo-ddf-file.md @@ -1,15 +1,12 @@ --- title: DevInfo DDF file description: DevInfo DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: beb07cc6-4133-4c0f-aa05-64db2b4a004f -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DevInfo DDF file diff --git a/windows/client-management/mdm/diagnose-mdm-failures-in-windows-10.md b/windows/client-management/mdm/diagnose-mdm-failures-in-windows-10.md index b64b4d7e22..d4c94639bd 100644 --- a/windows/client-management/mdm/diagnose-mdm-failures-in-windows-10.md +++ b/windows/client-management/mdm/diagnose-mdm-failures-in-windows-10.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 12D8263B-D839-4B19-9346-31E0CDD0CBF9 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Diagnose MDM failures in Windows 10 diff --git a/windows/client-management/mdm/diagnosticlog-csp.md b/windows/client-management/mdm/diagnosticlog-csp.md index 9ca2099bf6..da0d026cab 100644 --- a/windows/client-management/mdm/diagnosticlog-csp.md +++ b/windows/client-management/mdm/diagnosticlog-csp.md @@ -1,15 +1,12 @@ --- title: DiagnosticLog CSP description: DiagnosticLog CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: F76E0056-3ACD-48B2-BEA1-1048C96571C3 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DiagnosticLog CSP diff --git a/windows/client-management/mdm/diagnosticlog-ddf.md b/windows/client-management/mdm/diagnosticlog-ddf.md index eac5538d83..48154f0bad 100644 --- a/windows/client-management/mdm/diagnosticlog-ddf.md +++ b/windows/client-management/mdm/diagnosticlog-ddf.md @@ -1,15 +1,12 @@ --- title: DiagnosticLog DDF description: DiagnosticLog DDF -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 9DD75EDA-5913-45B4-9BED-20E30CDEBE16 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DiagnosticLog DDF diff --git a/windows/client-management/mdm/disconnecting-from-mdm-unenrollment.md b/windows/client-management/mdm/disconnecting-from-mdm-unenrollment.md index f9d18d62b9..29889b69f1 100644 --- a/windows/client-management/mdm/disconnecting-from-mdm-unenrollment.md +++ b/windows/client-management/mdm/disconnecting-from-mdm-unenrollment.md @@ -4,15 +4,12 @@ description: Disconnecting may be initiated either locally by the user from the MS-HAID: - 'p\_phdevicemgmt.disconnecting\_from\_the\_management\_infrastructure\_\_unenrollment\_' - 'p\_phDeviceMgmt.disconnecting\_from\_mdm\_unenrollment' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 33B2B248-631B-451F-B534-5DA095C4C8E8 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- diff --git a/windows/client-management/mdm/dmacc-csp.md b/windows/client-management/mdm/dmacc-csp.md index d88c945408..df7701702a 100644 --- a/windows/client-management/mdm/dmacc-csp.md +++ b/windows/client-management/mdm/dmacc-csp.md @@ -1,15 +1,12 @@ --- title: DMAcc CSP description: DMAcc CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 43e73d8a-6617-44e7-8459-5c96f4422e63 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DMAcc CSP diff --git a/windows/client-management/mdm/dmacc-ddf-file.md b/windows/client-management/mdm/dmacc-ddf-file.md index ec803dc8cc..dbca78b881 100644 --- a/windows/client-management/mdm/dmacc-ddf-file.md +++ b/windows/client-management/mdm/dmacc-ddf-file.md @@ -1,15 +1,12 @@ --- title: DMAcc DDF file description: DMAcc DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 44dc99aa-2a85-498b-8f52-a81863765606 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DMAcc DDF file diff --git a/windows/client-management/mdm/dmclient-csp.md b/windows/client-management/mdm/dmclient-csp.md index ef09308e53..59c7ae444e 100644 --- a/windows/client-management/mdm/dmclient-csp.md +++ b/windows/client-management/mdm/dmclient-csp.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: a5cf35d9-ced0-4087-a247-225f102f2544 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DMClient CSP diff --git a/windows/client-management/mdm/dmclient-ddf-file.md b/windows/client-management/mdm/dmclient-ddf-file.md index 1e585b2aae..85bc763412 100644 --- a/windows/client-management/mdm/dmclient-ddf-file.md +++ b/windows/client-management/mdm/dmclient-ddf-file.md @@ -1,15 +1,12 @@ --- title: DMClient DDF file description: DMClient DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: A21B33AF-DB76-4059-8170-FADF2CB898A0 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DMClient DDF file diff --git a/windows/client-management/mdm/dmprocessconfigxmlfiltered.md b/windows/client-management/mdm/dmprocessconfigxmlfiltered.md index b4cb648b0b..c78e43cc7d 100644 --- a/windows/client-management/mdm/dmprocessconfigxmlfiltered.md +++ b/windows/client-management/mdm/dmprocessconfigxmlfiltered.md @@ -1,9 +1,6 @@ --- title: DMProcessConfigXMLFiltered function description: Configures phone settings by using OMA Client Provisioning XML. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' Search.Refinement.TopicID: 184 ms.assetid: 31D79901-6206-454C-AE78-9B85A3B3487F keywords: ["DMProcessConfigXMLFiltered function"] @@ -15,11 +12,11 @@ api_location: - dmprocessxmlfiltered.dll api_type: - DllExport -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DMProcessConfigXMLFiltered function diff --git a/windows/client-management/mdm/dmsessionactions-csp.md b/windows/client-management/mdm/dmsessionactions-csp.md index ac58e9d890..17fa2ec201 100644 --- a/windows/client-management/mdm/dmsessionactions-csp.md +++ b/windows/client-management/mdm/dmsessionactions-csp.md @@ -1,14 +1,11 @@ --- title: DMSessionActions CSP description: DMSessionActions CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DMSessionActions CSP diff --git a/windows/client-management/mdm/dmsessionactions-ddf.md b/windows/client-management/mdm/dmsessionactions-ddf.md index 02f826d653..1983b804cc 100644 --- a/windows/client-management/mdm/dmsessionactions-ddf.md +++ b/windows/client-management/mdm/dmsessionactions-ddf.md @@ -1,14 +1,11 @@ --- title: DMSessionActions DDF file description: DMSessionActions DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DMSessionActions DDF file diff --git a/windows/client-management/mdm/dynamicmanagement-csp.md b/windows/client-management/mdm/dynamicmanagement-csp.md index 0d1719a0f7..b0a286169f 100644 --- a/windows/client-management/mdm/dynamicmanagement-csp.md +++ b/windows/client-management/mdm/dynamicmanagement-csp.md @@ -1,14 +1,11 @@ --- title: DynamicManagement CSP description: DynamicManagement CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DynamicManagement CSP diff --git a/windows/client-management/mdm/dynamicmanagement-ddf.md b/windows/client-management/mdm/dynamicmanagement-ddf.md index 85d5d0d84d..c1b15243de 100644 --- a/windows/client-management/mdm/dynamicmanagement-ddf.md +++ b/windows/client-management/mdm/dynamicmanagement-ddf.md @@ -1,15 +1,12 @@ --- title: DynamicManagement DDF file description: DynamicManagement DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 7e266db0-2fd9-4412-b428-4550f41a1738 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # DynamicManagement DDF file diff --git a/windows/client-management/mdm/eap-configuration.md b/windows/client-management/mdm/eap-configuration.md index 73dba1be35..23d7112ba0 100644 --- a/windows/client-management/mdm/eap-configuration.md +++ b/windows/client-management/mdm/eap-configuration.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: DD3F2292-4B4C-4430-A57F-922FED2A8FAE -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EAP configuration diff --git a/windows/client-management/mdm/email2-csp.md b/windows/client-management/mdm/email2-csp.md index 0447cef4b7..54fe0d1273 100644 --- a/windows/client-management/mdm/email2-csp.md +++ b/windows/client-management/mdm/email2-csp.md @@ -1,15 +1,12 @@ --- title: EMAIL2 CSP description: EMAIL2 CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: bcfc9d98-bc2e-42c6-9b81-0b5bf65ce2b8 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EMAIL2 CSP diff --git a/windows/client-management/mdm/email2-ddf-file.md b/windows/client-management/mdm/email2-ddf-file.md index c43030646c..58614e459a 100644 --- a/windows/client-management/mdm/email2-ddf-file.md +++ b/windows/client-management/mdm/email2-ddf-file.md @@ -1,15 +1,12 @@ --- title: EMAIL2 DDF file description: EMAIL2 DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 7e266db0-2fd9-4412-b428-4550f41a1738 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EMAIL2 DDF file diff --git a/windows/client-management/mdm/enable-offline-updates-for-windows-embedded-8-1-handheld-devices-to-windows-10.md b/windows/client-management/mdm/enable-offline-updates-for-windows-embedded-8-1-handheld-devices-to-windows-10.md index 3ba2111904..6fc5284a64 100644 --- a/windows/client-management/mdm/enable-offline-updates-for-windows-embedded-8-1-handheld-devices-to-windows-10.md +++ b/windows/client-management/mdm/enable-offline-updates-for-windows-embedded-8-1-handheld-devices-to-windows-10.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: ED3DAF80-847C-462B-BDB1-486577906772 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Enable offline upgrades to Windows 10 for Windows Embedded 8.1 Handheld devices diff --git a/windows/client-management/mdm/enterprise-app-management.md b/windows/client-management/mdm/enterprise-app-management.md index 39b6750b5c..d6b71a088d 100644 --- a/windows/client-management/mdm/enterprise-app-management.md +++ b/windows/client-management/mdm/enterprise-app-management.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 225DEE61-C3E3-4F75-BC79-5068759DFE99 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Enterprise app management diff --git a/windows/client-management/mdm/enterpriseapn-csp.md b/windows/client-management/mdm/enterpriseapn-csp.md index b68a89083d..c61db977e9 100644 --- a/windows/client-management/mdm/enterpriseapn-csp.md +++ b/windows/client-management/mdm/enterpriseapn-csp.md @@ -1,15 +1,12 @@ --- title: EnterpriseAPN CSP 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.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseAPN CSP diff --git a/windows/client-management/mdm/enterpriseapn-ddf.md b/windows/client-management/mdm/enterpriseapn-ddf.md index 80ddc0cd38..8d656ebb72 100644 --- a/windows/client-management/mdm/enterpriseapn-ddf.md +++ b/windows/client-management/mdm/enterpriseapn-ddf.md @@ -1,15 +1,12 @@ --- title: EnterpriseAPN DDF description: EnterpriseAPN DDF -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: A953ADEF-4523-425F-926C-48DA62EB9E21 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseAPN DDF diff --git a/windows/client-management/mdm/enterpriseappmanagement-csp.md b/windows/client-management/mdm/enterpriseappmanagement-csp.md index bc20aed7de..4067c76438 100644 --- a/windows/client-management/mdm/enterpriseappmanagement-csp.md +++ b/windows/client-management/mdm/enterpriseappmanagement-csp.md @@ -1,15 +1,12 @@ --- title: EnterpriseAppManagement CSP description: EnterpriseAppManagement CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 698b8bf4-652e-474b-97e4-381031357623 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseAppManagement CSP diff --git a/windows/client-management/mdm/enterpriseappvmanagement-csp.md b/windows/client-management/mdm/enterpriseappvmanagement-csp.md index 18fc2e083f..17b4288eb5 100644 --- a/windows/client-management/mdm/enterpriseappvmanagement-csp.md +++ b/windows/client-management/mdm/enterpriseappvmanagement-csp.md @@ -1,14 +1,11 @@ --- title: EnterpriseAppVManagement CSP description: EnterpriseAppVManagement CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseAppVManagement CSP diff --git a/windows/client-management/mdm/enterpriseappvmanagement-ddf.md b/windows/client-management/mdm/enterpriseappvmanagement-ddf.md index 05d5811f5b..19c14ddfc4 100644 --- a/windows/client-management/mdm/enterpriseappvmanagement-ddf.md +++ b/windows/client-management/mdm/enterpriseappvmanagement-ddf.md @@ -1,14 +1,11 @@ --- title: EnterpriseAppVManagement DDF file description: EnterpriseAppVManagement DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseAppVManagement DDF file diff --git a/windows/client-management/mdm/enterpriseassignedaccess-csp.md b/windows/client-management/mdm/enterpriseassignedaccess-csp.md index 36a8f79379..069a8486f3 100644 --- a/windows/client-management/mdm/enterpriseassignedaccess-csp.md +++ b/windows/client-management/mdm/enterpriseassignedaccess-csp.md @@ -1,15 +1,12 @@ --- title: EnterpriseAssignedAccess CSP description: EnterpriseAssignedAccess CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 5F88E567-77AA-4822-A0BC-3B31100639AA -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseAssignedAccess CSP diff --git a/windows/client-management/mdm/enterpriseassignedaccess-ddf.md b/windows/client-management/mdm/enterpriseassignedaccess-ddf.md index 8612e7474d..f98ed740fe 100644 --- a/windows/client-management/mdm/enterpriseassignedaccess-ddf.md +++ b/windows/client-management/mdm/enterpriseassignedaccess-ddf.md @@ -1,15 +1,12 @@ --- title: EnterpriseAssignedAccess DDF description: EnterpriseAssignedAccess DDF -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 8BD6FB05-E643-4695-99A2-633995884B37 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseAssignedAccess DDF diff --git a/windows/client-management/mdm/enterpriseassignedaccess-xsd.md b/windows/client-management/mdm/enterpriseassignedaccess-xsd.md index f1ca1209d9..6d19a5aedd 100644 --- a/windows/client-management/mdm/enterpriseassignedaccess-xsd.md +++ b/windows/client-management/mdm/enterpriseassignedaccess-xsd.md @@ -1,15 +1,12 @@ --- title: EnterpriseAssignedAccess XSD description: EnterpriseAssignedAccess XSD -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: BB3B633E-E361-4B95-9D4A-CE6E08D67ADA -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseAssignedAccess XSD diff --git a/windows/client-management/mdm/enterprisedataprotection-csp.md b/windows/client-management/mdm/enterprisedataprotection-csp.md index 4f92f7850b..d75ed17826 100644 --- a/windows/client-management/mdm/enterprisedataprotection-csp.md +++ b/windows/client-management/mdm/enterprisedataprotection-csp.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: E2D4467F-A154-4C00-9208-7798EF3E25B3 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseDataProtection CSP diff --git a/windows/client-management/mdm/enterprisedataprotection-ddf-file.md b/windows/client-management/mdm/enterprisedataprotection-ddf-file.md index 496f553310..a7914046b2 100644 --- a/windows/client-management/mdm/enterprisedataprotection-ddf-file.md +++ b/windows/client-management/mdm/enterprisedataprotection-ddf-file.md @@ -1,15 +1,12 @@ --- title: EnterpriseDataProtection DDF file 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.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseDataProtection DDF file diff --git a/windows/client-management/mdm/enterprisedesktopappmanagement-csp.md b/windows/client-management/mdm/enterprisedesktopappmanagement-csp.md index d3bdfb8e84..bc056caa35 100644 --- a/windows/client-management/mdm/enterprisedesktopappmanagement-csp.md +++ b/windows/client-management/mdm/enterprisedesktopappmanagement-csp.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 2BFF7491-BB01-41BA-9A22-AB209EE59FC5 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseDesktopAppManagement CSP diff --git a/windows/client-management/mdm/enterprisedesktopappmanagement-ddf-file.md b/windows/client-management/mdm/enterprisedesktopappmanagement-ddf-file.md index 3b4164d39c..5bd96246ec 100644 --- a/windows/client-management/mdm/enterprisedesktopappmanagement-ddf-file.md +++ b/windows/client-management/mdm/enterprisedesktopappmanagement-ddf-file.md @@ -1,15 +1,12 @@ --- title: EnterpriseDesktopAppManagement DDF 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.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseDesktopAppManagement DDF diff --git a/windows/client-management/mdm/enterprisedesktopappmanagement2-xsd.md b/windows/client-management/mdm/enterprisedesktopappmanagement2-xsd.md index bb50c5d323..d5e415b890 100644 --- a/windows/client-management/mdm/enterprisedesktopappmanagement2-xsd.md +++ b/windows/client-management/mdm/enterprisedesktopappmanagement2-xsd.md @@ -1,15 +1,12 @@ --- title: EnterpriseDesktopAppManagement XSD 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.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseDesktopAppManagement XSD diff --git a/windows/client-management/mdm/enterpriseext-csp.md b/windows/client-management/mdm/enterpriseext-csp.md index 867a193685..2bb98165d4 100644 --- a/windows/client-management/mdm/enterpriseext-csp.md +++ b/windows/client-management/mdm/enterpriseext-csp.md @@ -1,15 +1,12 @@ --- title: EnterpriseExt CSP description: EnterpriseExt CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: ACA5CD79-BBD5-4DD1-86DA-0285B93982BD -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseExt CSP diff --git a/windows/client-management/mdm/enterpriseext-ddf.md b/windows/client-management/mdm/enterpriseext-ddf.md index 76b9534272..06bc4c0198 100644 --- a/windows/client-management/mdm/enterpriseext-ddf.md +++ b/windows/client-management/mdm/enterpriseext-ddf.md @@ -1,15 +1,12 @@ --- title: EnterpriseExt DDF description: EnterpriseExt DDF -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 71BF81D4-FBEC-4B03-BF99-F7A5EDD4F91B -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseExt DDF diff --git a/windows/client-management/mdm/enterpriseextfilessystem-csp.md b/windows/client-management/mdm/enterpriseextfilessystem-csp.md index 9cc709a3a7..f6b332a182 100644 --- a/windows/client-management/mdm/enterpriseextfilessystem-csp.md +++ b/windows/client-management/mdm/enterpriseextfilessystem-csp.md @@ -1,15 +1,12 @@ --- title: EnterpriseExtFileSystem CSP description: EnterpriseExtFileSystem CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: F773AD72-A800-481A-A9E2-899BA56F4426 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseExtFileSystem CSP diff --git a/windows/client-management/mdm/enterpriseextfilesystem-ddf.md b/windows/client-management/mdm/enterpriseextfilesystem-ddf.md index 14ac906b77..dc371ba33a 100644 --- a/windows/client-management/mdm/enterpriseextfilesystem-ddf.md +++ b/windows/client-management/mdm/enterpriseextfilesystem-ddf.md @@ -1,15 +1,12 @@ --- title: EnterpriseExtFileSystem DDF description: EnterpriseExtFileSystem DDF -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 2D292E4B-15EE-4AEB-8884-6FEE8B92D2D1 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseExtFileSystem DDF diff --git a/windows/client-management/mdm/enterprisemodernappmanagement-csp.md b/windows/client-management/mdm/enterprisemodernappmanagement-csp.md index 85be2efaa7..23fea75c17 100644 --- a/windows/client-management/mdm/enterprisemodernappmanagement-csp.md +++ b/windows/client-management/mdm/enterprisemodernappmanagement-csp.md @@ -1,15 +1,12 @@ --- title: EnterpriseModernAppManagement CSP description: EnterpriseModernAppManagement CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 9DD0741A-A229-41A0-A85A-93E185207C42 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseModernAppManagement CSP diff --git a/windows/client-management/mdm/enterprisemodernappmanagement-ddf.md b/windows/client-management/mdm/enterprisemodernappmanagement-ddf.md index 18c8f75db8..4da9c4b384 100644 --- a/windows/client-management/mdm/enterprisemodernappmanagement-ddf.md +++ b/windows/client-management/mdm/enterprisemodernappmanagement-ddf.md @@ -1,15 +1,12 @@ --- title: EnterpriseModernAppManagement DDF description: EnterpriseModernAppManagement DDF -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseModernAppManagement DDF diff --git a/windows/client-management/mdm/enterprisemodernappmanagement-xsd.md b/windows/client-management/mdm/enterprisemodernappmanagement-xsd.md index eb5fdeb742..74d0c2cb31 100644 --- a/windows/client-management/mdm/enterprisemodernappmanagement-xsd.md +++ b/windows/client-management/mdm/enterprisemodernappmanagement-xsd.md @@ -1,15 +1,12 @@ --- title: EnterpriseModernAppManagement XSD description: Here is the XSD for the application parameters. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: D393D094-25E5-4E66-A60F-B59CC312BF57 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # EnterpriseModernAppManagement XSD diff --git a/windows/client-management/mdm/federated-authentication-device-enrollment.md b/windows/client-management/mdm/federated-authentication-device-enrollment.md index 188c3894f9..4855aaefd7 100644 --- a/windows/client-management/mdm/federated-authentication-device-enrollment.md +++ b/windows/client-management/mdm/federated-authentication-device-enrollment.md @@ -1,15 +1,12 @@ --- title: Federated authentication device enrollment 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.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Federated authentication device enrollment diff --git a/windows/client-management/mdm/filesystem-csp.md b/windows/client-management/mdm/filesystem-csp.md index 569737c50a..7b22236bf3 100644 --- a/windows/client-management/mdm/filesystem-csp.md +++ b/windows/client-management/mdm/filesystem-csp.md @@ -1,15 +1,12 @@ --- title: FileSystem CSP description: FileSystem CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 9117ee16-ca7a-4efa-9270-c9ac8547e541 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # FileSystem CSP diff --git a/windows/client-management/mdm/get-inventory.md b/windows/client-management/mdm/get-inventory.md index 8305769663..405f3c7a29 100644 --- a/windows/client-management/mdm/get-inventory.md +++ b/windows/client-management/mdm/get-inventory.md @@ -4,15 +4,12 @@ description: The Get Inventory operation retrieves information from the Windows MS-HAID: - 'p\_phdevicemgmt.get\_seatblock' - 'p\_phDeviceMgmt.get\_inventory' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: C5485722-FC49-4358-A097-74169B204E74 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Get Inventory diff --git a/windows/client-management/mdm/get-localized-product-details.md b/windows/client-management/mdm/get-localized-product-details.md index d9ef11678f..16f29cb848 100644 --- a/windows/client-management/mdm/get-localized-product-details.md +++ b/windows/client-management/mdm/get-localized-product-details.md @@ -1,15 +1,12 @@ --- 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. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: EF6AFCA9-8699-46C9-A3BB-CD2750C07901 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Get localized product details diff --git a/windows/client-management/mdm/get-offline-license.md b/windows/client-management/mdm/get-offline-license.md index 8877b2cf4e..cf3a27b38c 100644 --- a/windows/client-management/mdm/get-offline-license.md +++ b/windows/client-management/mdm/get-offline-license.md @@ -1,15 +1,12 @@ --- title: Get offline license description: The Get offline license operation retrieves the offline license information of a product from the Windows Store for Business. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 08DAD813-CF4D-42D6-A783-994A03AEE051 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Get offline license diff --git a/windows/client-management/mdm/get-product-details.md b/windows/client-management/mdm/get-product-details.md index c05f6502b7..c602332f9b 100644 --- a/windows/client-management/mdm/get-product-details.md +++ b/windows/client-management/mdm/get-product-details.md @@ -1,15 +1,12 @@ --- title: Get product details description: The Get product details operation retrieves the product information from the Windows Store for Business for a specific application. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: BC432EBA-CE5E-43BD-BD54-942774767286 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Get product details diff --git a/windows/client-management/mdm/get-product-package.md b/windows/client-management/mdm/get-product-package.md index 448c3933a2..ef80b65d3b 100644 --- a/windows/client-management/mdm/get-product-package.md +++ b/windows/client-management/mdm/get-product-package.md @@ -1,15 +1,12 @@ --- title: Get product package description: The Get product package operation retrieves the information about a specific application in the Windows Store for Business. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 4314C65E-6DDC-405C-A591-D66F799A341F -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Get product package diff --git a/windows/client-management/mdm/get-product-packages.md b/windows/client-management/mdm/get-product-packages.md index 448a755ac2..24d354e7c2 100644 --- a/windows/client-management/mdm/get-product-packages.md +++ b/windows/client-management/mdm/get-product-packages.md @@ -1,15 +1,12 @@ --- title: Get product packages description: The Get product packages operation retrieves the information about applications in the Windows Store for Business. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 039468BF-B9EE-4E1C-810C-9ACDD55C0835 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Get product packages diff --git a/windows/client-management/mdm/get-seat.md b/windows/client-management/mdm/get-seat.md index 2d24e0e3ab..301be7db93 100644 --- a/windows/client-management/mdm/get-seat.md +++ b/windows/client-management/mdm/get-seat.md @@ -1,15 +1,12 @@ --- title: Get seat description: The Get seat operation retrieves the information about an active seat for a specified user in the Windows Store for Business. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 715BAEB2-79FD-4945-A57F-482F9E7D07C6 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Get seat diff --git a/windows/client-management/mdm/get-seats-assigned-to-a-user.md b/windows/client-management/mdm/get-seats-assigned-to-a-user.md index b755a4fc0f..77e13c0706 100644 --- a/windows/client-management/mdm/get-seats-assigned-to-a-user.md +++ b/windows/client-management/mdm/get-seats-assigned-to-a-user.md @@ -1,15 +1,12 @@ --- title: Get seats assigned to a user description: The Get seats assigned to a user operation retrieves information about assigned seats in the Windows Store for Business. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: CB963E44-8C7C-46F9-A979-89BBB376172B -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Get seats assigned to a user diff --git a/windows/client-management/mdm/get-seats.md b/windows/client-management/mdm/get-seats.md index ba26bb6f6b..1e5fbe93dd 100644 --- a/windows/client-management/mdm/get-seats.md +++ b/windows/client-management/mdm/get-seats.md @@ -1,15 +1,12 @@ --- title: Get seats description: The Get seats operation retrieves the information about active seats in the Windows Store for Business. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 32945788-47AC-4259-B616-F359D48F4F2F -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Get seats diff --git a/windows/client-management/mdm/healthattestation-csp.md b/windows/client-management/mdm/healthattestation-csp.md index 6eb645cf52..fb44d96773 100644 --- a/windows/client-management/mdm/healthattestation-csp.md +++ b/windows/client-management/mdm/healthattestation-csp.md @@ -1,15 +1,12 @@ --- title: Device HealthAttestation CSP description: Device HealthAttestation CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 6F2D783C-F6B4-4A81-B9A2-522C4661D1AC -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Device HealthAttestation CSP diff --git a/windows/client-management/mdm/healthattestation-ddf.md b/windows/client-management/mdm/healthattestation-ddf.md index 3c50a72760..f3e857ee6f 100644 --- a/windows/client-management/mdm/healthattestation-ddf.md +++ b/windows/client-management/mdm/healthattestation-ddf.md @@ -1,15 +1,12 @@ --- title: HealthAttestation DDF description: HealthAttestation DDF -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: D20AC78D-D2D4-434B-B9FD-294BCD9D1DDE -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # HealthAttestation DDF diff --git a/windows/client-management/mdm/hotspot-csp.md b/windows/client-management/mdm/hotspot-csp.md index 905181c7ee..181c625ca6 100644 --- a/windows/client-management/mdm/hotspot-csp.md +++ b/windows/client-management/mdm/hotspot-csp.md @@ -1,15 +1,12 @@ --- title: HotSpot CSP description: HotSpot CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: ec49dec1-fa79-420a-a9a7-e86668b3eebf -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # HotSpot CSP diff --git a/windows/client-management/mdm/iconfigserviceprovider2.md b/windows/client-management/mdm/iconfigserviceprovider2.md index f241ae1aa4..be59397ff3 100644 --- a/windows/client-management/mdm/iconfigserviceprovider2.md +++ b/windows/client-management/mdm/iconfigserviceprovider2.md @@ -1,15 +1,12 @@ --- title: IConfigServiceProvider2 description: IConfigServiceProvider2 -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 8deec0fb-59a6-4d08-8ddb-6d0d3d868a10 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # IConfigServiceProvider2 diff --git a/windows/client-management/mdm/iconfigserviceprovider2configmanagernotification.md b/windows/client-management/mdm/iconfigserviceprovider2configmanagernotification.md index eed45454d3..2d72418a32 100644 --- a/windows/client-management/mdm/iconfigserviceprovider2configmanagernotification.md +++ b/windows/client-management/mdm/iconfigserviceprovider2configmanagernotification.md @@ -1,15 +1,12 @@ --- title: IConfigServiceProvider2 ConfigManagerNotification description: IConfigServiceProvider2 ConfigManagerNotification -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: b1f0fe0f-afbe-4b36-a75d-34239a86a75c -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # IConfigServiceProvider2::ConfigManagerNotification diff --git a/windows/client-management/mdm/iconfigserviceprovider2getnode.md b/windows/client-management/mdm/iconfigserviceprovider2getnode.md index 8ad2ca892a..d9efa4d469 100644 --- a/windows/client-management/mdm/iconfigserviceprovider2getnode.md +++ b/windows/client-management/mdm/iconfigserviceprovider2getnode.md @@ -1,15 +1,12 @@ --- title: IConfigServiceProvider2 GetNode description: IConfigServiceProvider2 GetNode -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 4dc10a59-f6a2-45c0-927c-d594afc9bb91 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # IConfigServiceProvider2::GetNode diff --git a/windows/client-management/mdm/icspnode.md b/windows/client-management/mdm/icspnode.md index e5155263e0..5da7ad4b29 100644 --- a/windows/client-management/mdm/icspnode.md +++ b/windows/client-management/mdm/icspnode.md @@ -1,15 +1,12 @@ --- title: ICSPNode description: ICSPNode -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 023466e6-a8ab-48ad-8548-291409686ac2 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPNode diff --git a/windows/client-management/mdm/icspnodeadd.md b/windows/client-management/mdm/icspnodeadd.md index 97a7e667cc..20be80123e 100644 --- a/windows/client-management/mdm/icspnodeadd.md +++ b/windows/client-management/mdm/icspnodeadd.md @@ -1,15 +1,12 @@ --- title: ICSPNode Add description: ICSPNode Add -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 5f03d350-c82b-4747-975f-385fd8b5b3a8 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPNode::Add diff --git a/windows/client-management/mdm/icspnodeclear.md b/windows/client-management/mdm/icspnodeclear.md index 213e75a31a..5c0f660fa3 100644 --- a/windows/client-management/mdm/icspnodeclear.md +++ b/windows/client-management/mdm/icspnodeclear.md @@ -1,15 +1,12 @@ --- title: ICSPNode Clear description: ICSPNode Clear -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: b414498b-110a-472d-95c0-2d5b38cd78a6 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- diff --git a/windows/client-management/mdm/icspnodecopy.md b/windows/client-management/mdm/icspnodecopy.md index b5008ab367..cf113766b6 100644 --- a/windows/client-management/mdm/icspnodecopy.md +++ b/windows/client-management/mdm/icspnodecopy.md @@ -1,15 +1,12 @@ --- title: ICSPNode Copy description: ICSPNode Copy -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: cd5ce0bc-a08b-4f82-802d-c7ff8701b41f -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPNode::Copy diff --git a/windows/client-management/mdm/icspnodedeletechild.md b/windows/client-management/mdm/icspnodedeletechild.md index 158c31361e..686df037ea 100644 --- a/windows/client-management/mdm/icspnodedeletechild.md +++ b/windows/client-management/mdm/icspnodedeletechild.md @@ -1,15 +1,12 @@ --- title: ICSPNode DeleteChild description: ICSPNode DeleteChild -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 8cf3663d-a4cf-4d11-b03a-f1d096ad7f9c -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPNode::DeleteChild diff --git a/windows/client-management/mdm/icspnodedeleteproperty.md b/windows/client-management/mdm/icspnodedeleteproperty.md index 2280c6e984..74126c9679 100644 --- a/windows/client-management/mdm/icspnodedeleteproperty.md +++ b/windows/client-management/mdm/icspnodedeleteproperty.md @@ -1,15 +1,12 @@ --- title: ICSPNode DeleteProperty description: ICSPNode DeleteProperty -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 7e21851f-d663-4558-b3e8-590d24b4f6c4 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPNode::DeleteProperty diff --git a/windows/client-management/mdm/icspnodeexecute.md b/windows/client-management/mdm/icspnodeexecute.md index 97a0b3f76b..ef2c4dfa1a 100644 --- a/windows/client-management/mdm/icspnodeexecute.md +++ b/windows/client-management/mdm/icspnodeexecute.md @@ -1,15 +1,12 @@ --- title: ICSPNode Execute description: ICSPNode Execute -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 5916e7b7-256d-49fd-82b6-db0547a215ec -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPNode::Execute diff --git a/windows/client-management/mdm/icspnodegetchildnodenames.md b/windows/client-management/mdm/icspnodegetchildnodenames.md index 420ed62d10..aa63ca5b8e 100644 --- a/windows/client-management/mdm/icspnodegetchildnodenames.md +++ b/windows/client-management/mdm/icspnodegetchildnodenames.md @@ -1,15 +1,12 @@ --- title: ICSPNode GetChildNodeNames description: ICSPNode GetChildNodeNames -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: dc057f2b-282b-49ac-91c4-bb83bd3ca4dc -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPNode::GetChildNodeNames diff --git a/windows/client-management/mdm/icspnodegetproperty.md b/windows/client-management/mdm/icspnodegetproperty.md index 8d4a28d933..673d9e8e15 100644 --- a/windows/client-management/mdm/icspnodegetproperty.md +++ b/windows/client-management/mdm/icspnodegetproperty.md @@ -1,15 +1,12 @@ --- title: ICSPNode GetProperty description: ICSPNode GetProperty -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: a2bdc158-72e0-4cdb-97ce-f5cf1a44b7db -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPNode::GetProperty diff --git a/windows/client-management/mdm/icspnodegetpropertyidentifiers.md b/windows/client-management/mdm/icspnodegetpropertyidentifiers.md index a4624bfac7..55fabbe552 100644 --- a/windows/client-management/mdm/icspnodegetpropertyidentifiers.md +++ b/windows/client-management/mdm/icspnodegetpropertyidentifiers.md @@ -1,15 +1,12 @@ --- title: ICSPNode GetPropertyIdentifiers description: ICSPNode GetPropertyIdentifiers -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 8a052cd3-d74c-40c4-845f-f804b920deb4 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPNode::GetPropertyIdentifiers diff --git a/windows/client-management/mdm/icspnodegetvalue.md b/windows/client-management/mdm/icspnodegetvalue.md index 95d95c5813..fe58b75211 100644 --- a/windows/client-management/mdm/icspnodegetvalue.md +++ b/windows/client-management/mdm/icspnodegetvalue.md @@ -1,15 +1,12 @@ --- title: ICSPNode GetValue description: ICSPNode GetValue -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: c684036d-98be-4659-8ce8-f72436a39b90 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPNode::GetValue diff --git a/windows/client-management/mdm/icspnodemove.md b/windows/client-management/mdm/icspnodemove.md index b106a7cb80..53c5047934 100644 --- a/windows/client-management/mdm/icspnodemove.md +++ b/windows/client-management/mdm/icspnodemove.md @@ -1,15 +1,12 @@ --- title: ICSPNode Move description: ICSPNode Move -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: efb359c3-5c86-4975-bf6f-a1c33922442a -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPNode::Move diff --git a/windows/client-management/mdm/icspnodesetproperty.md b/windows/client-management/mdm/icspnodesetproperty.md index 7805bd3a38..daae584a37 100644 --- a/windows/client-management/mdm/icspnodesetproperty.md +++ b/windows/client-management/mdm/icspnodesetproperty.md @@ -1,15 +1,12 @@ --- title: ICSPNode SetProperty description: ICSPNode SetProperty -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: e235c38f-ea04-4cd8-adec-3c6c0ce7172d -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPNode::SetProperty diff --git a/windows/client-management/mdm/icspnodesetvalue.md b/windows/client-management/mdm/icspnodesetvalue.md index cc4c4dcf3f..ccb5ff6c76 100644 --- a/windows/client-management/mdm/icspnodesetvalue.md +++ b/windows/client-management/mdm/icspnodesetvalue.md @@ -1,15 +1,12 @@ --- title: ICSPNode SetValue description: ICSPNode SetValue -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: b218636d-fe8b-4a0f-b4e8-a621f65619d3 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPNode::SetValue diff --git a/windows/client-management/mdm/icspnodetransactioning.md b/windows/client-management/mdm/icspnodetransactioning.md index 34e1557544..536708cb7d 100644 --- a/windows/client-management/mdm/icspnodetransactioning.md +++ b/windows/client-management/mdm/icspnodetransactioning.md @@ -1,15 +1,12 @@ --- title: ICSPNodeTransactioning description: ICSPNodeTransactioning -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 24dc518a-4a8d-41fe-9bc6-217bbbdf6a3f -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPNodeTransactioning diff --git a/windows/client-management/mdm/icspvalidate.md b/windows/client-management/mdm/icspvalidate.md index db4a3ea48f..42828da848 100644 --- a/windows/client-management/mdm/icspvalidate.md +++ b/windows/client-management/mdm/icspvalidate.md @@ -1,15 +1,12 @@ --- title: ICSPValidate description: ICSPValidate -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: b0993f2d-6269-412f-a329-af25fff34ca2 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ICSPValidate diff --git a/windows/client-management/mdm/implement-server-side-mobile-application-management.md b/windows/client-management/mdm/implement-server-side-mobile-application-management.md index 360eca3308..904aabcc23 100644 --- a/windows/client-management/mdm/implement-server-side-mobile-application-management.md +++ b/windows/client-management/mdm/implement-server-side-mobile-application-management.md @@ -1,14 +1,11 @@ --- title: Implement server-side support for mobile application management on Windows description: The Windows version of mobile application management (MAM) is a lightweight solution for managing company data access and security on personal devices. MAM support is built into Windows on top of Windows Information Protection (WIP). -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- diff --git a/windows/client-management/mdm/index.md b/windows/client-management/mdm/index.md index 6c42d88644..70a844c704 100644 --- a/windows/client-management/mdm/index.md +++ b/windows/client-management/mdm/index.md @@ -4,15 +4,12 @@ description: Windows 10 provides an enterprise management solution to help IT p MS-HAID: - 'p\_phDeviceMgmt.provisioning\_and\_device\_management' - 'p\_phDeviceMgmt.mobile\_device\_management\_windows\_mdm' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 50ac90a7-713e-4487-9cb9-b6d6fdaa4e5b -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Mobile device management diff --git a/windows/client-management/mdm/management-tool-for-windows-store-for-business.md b/windows/client-management/mdm/management-tool-for-windows-store-for-business.md index eef8e355a3..98510df8a0 100644 --- a/windows/client-management/mdm/management-tool-for-windows-store-for-business.md +++ b/windows/client-management/mdm/management-tool-for-windows-store-for-business.md @@ -4,15 +4,12 @@ description: The Windows Store for Business has a new web service designed for t MS-HAID: - 'p\_phdevicemgmt.business\_store\_portal\_management\_tool' - 'p\_phDeviceMgmt.management\_tool\_for\_windows\_store\_for\_business' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 0E39AE85-1703-4B24-9A7F-831C6455068F -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Management tool for the Windows Store for Business diff --git a/windows/client-management/mdm/maps-csp.md b/windows/client-management/mdm/maps-csp.md index dfe6a73a3b..7a5f26f5ef 100644 --- a/windows/client-management/mdm/maps-csp.md +++ b/windows/client-management/mdm/maps-csp.md @@ -1,15 +1,12 @@ --- title: Maps CSP description: The Maps configuration service provider (CSP) is used to configure the maps to download to the device. This CSP was added in Windows 10, version 1511. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: E5157296-7C31-4B08-8877-15304C9F6F26 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Maps CSP diff --git a/windows/client-management/mdm/maps-ddf-file.md b/windows/client-management/mdm/maps-ddf-file.md index b4b0100012..e91dbca47e 100644 --- a/windows/client-management/mdm/maps-ddf-file.md +++ b/windows/client-management/mdm/maps-ddf-file.md @@ -1,15 +1,12 @@ --- title: Maps DDF file description: This topic shows the OMA DM device description framework (DDF) for the Maps configuration service provider. This CSP was added in Windows 10, version 1511. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: EF22DBB6-0578-4FD0-B8A6-19DC03288FAF -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Maps DDF file diff --git a/windows/client-management/mdm/mdm-enrollment-of-windows-devices.md b/windows/client-management/mdm/mdm-enrollment-of-windows-devices.md index 26b3ed04f0..c2896dd7cd 100644 --- a/windows/client-management/mdm/mdm-enrollment-of-windows-devices.md +++ b/windows/client-management/mdm/mdm-enrollment-of-windows-devices.md @@ -4,15 +4,12 @@ description: MDM enrollment of Windows-based devices MS-HAID: - 'p\_phdevicemgmt.enrollment\_ui' - 'p\_phDeviceMgmt.mdm\_enrollment\_of\_windows\_devices' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 4651C81B-D2D6-446A-AA24-04D01C1D0883 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # MDM enrollment of Windows-based devices diff --git a/windows/client-management/mdm/messaging-csp.md b/windows/client-management/mdm/messaging-csp.md index 1d14736623..25454c6580 100644 --- a/windows/client-management/mdm/messaging-csp.md +++ b/windows/client-management/mdm/messaging-csp.md @@ -1,14 +1,11 @@ --- title: Messaging CSP description: Messaging CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Messaging CSP diff --git a/windows/client-management/mdm/messaging-ddf.md b/windows/client-management/mdm/messaging-ddf.md index 87fbd0072f..8a3d8d7e7d 100644 --- a/windows/client-management/mdm/messaging-ddf.md +++ b/windows/client-management/mdm/messaging-ddf.md @@ -1,14 +1,11 @@ --- title: Messaging DDF file description: Messaging DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Messaging DDF file diff --git a/windows/client-management/mdm/mobile-device-enrollment.md b/windows/client-management/mdm/mobile-device-enrollment.md index 9192197a28..e0a4d74fa3 100644 --- a/windows/client-management/mdm/mobile-device-enrollment.md +++ b/windows/client-management/mdm/mobile-device-enrollment.md @@ -1,15 +1,12 @@ --- title: Mobile device enrollment description: Mobile device enrollment is the first phase of enterprise management. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 08C8B3DB-3263-414B-A368-F47B94F47A11 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Mobile device enrollment diff --git a/windows/client-management/mdm/nap-csp.md b/windows/client-management/mdm/nap-csp.md index b4660ca511..d62bf09a6c 100644 --- a/windows/client-management/mdm/nap-csp.md +++ b/windows/client-management/mdm/nap-csp.md @@ -1,15 +1,12 @@ --- title: NAP CSP description: NAP CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 82f04492-88a6-4afd-af10-a62b8d444d21 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # NAP CSP diff --git a/windows/client-management/mdm/napdef-csp.md b/windows/client-management/mdm/napdef-csp.md index 8df98c23fd..0019bd057b 100644 --- a/windows/client-management/mdm/napdef-csp.md +++ b/windows/client-management/mdm/napdef-csp.md @@ -1,15 +1,12 @@ --- title: NAPDEF CSP description: NAPDEF CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 9bcc65dd-a72b-4f90-aba7-4066daa06988 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # NAPDEF CSP diff --git a/windows/client-management/mdm/networkproxy-csp.md b/windows/client-management/mdm/networkproxy-csp.md index 17bfecb9bd..2e9efd2de6 100644 --- a/windows/client-management/mdm/networkproxy-csp.md +++ b/windows/client-management/mdm/networkproxy-csp.md @@ -1,14 +1,11 @@ --- title: NetworkProxy CSP description: NetworkProxy CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # NetworkProxy CSP diff --git a/windows/client-management/mdm/networkproxy-ddf.md b/windows/client-management/mdm/networkproxy-ddf.md index 47e68fe01b..6657bc67ee 100644 --- a/windows/client-management/mdm/networkproxy-ddf.md +++ b/windows/client-management/mdm/networkproxy-ddf.md @@ -1,14 +1,11 @@ --- title: NetworkProxy DDF file description: AppNetworkProxyLocker DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # NetworkProxy DDF file diff --git a/windows/client-management/mdm/networkqospolicy-csp.md b/windows/client-management/mdm/networkqospolicy-csp.md index 99983160de..eb09ca2909 100644 --- a/windows/client-management/mdm/networkqospolicy-csp.md +++ b/windows/client-management/mdm/networkqospolicy-csp.md @@ -1,14 +1,11 @@ --- title: NetworkQoSPolicy CSP description: he NetworkQoSPolicy CSP applies the Quality of Service (QoS) policy for Microsoft Surface Hub. This CSP was added in Windows 10, version 1703. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # NetworkQoSPolicy CSP diff --git a/windows/client-management/mdm/networkqospolicy-ddf.md b/windows/client-management/mdm/networkqospolicy-ddf.md index a8a04b9de5..e22f1a5ac3 100644 --- a/windows/client-management/mdm/networkqospolicy-ddf.md +++ b/windows/client-management/mdm/networkqospolicy-ddf.md @@ -1,15 +1,12 @@ --- title: NetworkQoSPolicy DDF description: This topic shows the OMA DM device description framework (DDF) for the NetworkQoSPolicy configuration service provider. DDF files are used only with OMA DM provisioning XML. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # NetworkQoSPolicy DDF diff --git a/windows/client-management/mdm/new-in-windows-mdm-enrollment-management.md b/windows/client-management/mdm/new-in-windows-mdm-enrollment-management.md index 4bb5eecbe0..01c9aace26 100644 --- a/windows/client-management/mdm/new-in-windows-mdm-enrollment-management.md +++ b/windows/client-management/mdm/new-in-windows-mdm-enrollment-management.md @@ -4,15 +4,12 @@ description: This topic provides information about what's new and breaking chang MS-HAID: - 'p\_phdevicemgmt.mdm\_enrollment\_and\_management\_overview' - 'p\_phDeviceMgmt.new\_in\_windows\_mdm\_enrollment\_management' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 9C42064F-091C-4901-BC73-9ABE79EE4224 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # What's new in MDM enrollment and management @@ -883,6 +880,14 @@ For details about Microsoft mobile device management protocols for Windows 10 s
  • Ownership
  • + +MDM support for Windows 10 S +

    Updated the following topics to indicate MDM support in Windows 10 S.

    + +   @@ -1223,6 +1228,14 @@ The DM agent for [push-button reset](https://msdn.microsoft.com/windows/hardware
  • Ownership
  • + +MDM support for Windows 10 S +

    Updated the following topics to indicate MDM support in Windows 10 S.

    + + diff --git a/windows/client-management/mdm/nodecache-csp.md b/windows/client-management/mdm/nodecache-csp.md index 459eb5b6a1..66ec4f198b 100644 --- a/windows/client-management/mdm/nodecache-csp.md +++ b/windows/client-management/mdm/nodecache-csp.md @@ -1,15 +1,12 @@ --- title: NodeCache CSP description: NodeCache CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: b4dd2b0d-79ef-42ac-ab5b-ee07b3097876 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # NodeCache CSP diff --git a/windows/client-management/mdm/nodecache-ddf-file.md b/windows/client-management/mdm/nodecache-ddf-file.md index 5cc96df8bb..1d3eb141bc 100644 --- a/windows/client-management/mdm/nodecache-ddf-file.md +++ b/windows/client-management/mdm/nodecache-ddf-file.md @@ -1,15 +1,12 @@ --- title: NodeCache DDF file description: NodeCache DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: d7605098-12aa-4423-89ae-59624fa31236 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # NodeCache DDF file diff --git a/windows/client-management/mdm/office-csp.md b/windows/client-management/mdm/office-csp.md index dbc41f165d..ca215622b9 100644 --- a/windows/client-management/mdm/office-csp.md +++ b/windows/client-management/mdm/office-csp.md @@ -1,14 +1,11 @@ --- title: Office CSP description: The Office configuration service provider (CSP) enables a Microsoft Office client to be installed on a device. This CSP was added in Windows 10, version 1703. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Office CSP diff --git a/windows/client-management/mdm/office-ddf.md b/windows/client-management/mdm/office-ddf.md index ead5845d21..85f2f48531 100644 --- a/windows/client-management/mdm/office-ddf.md +++ b/windows/client-management/mdm/office-ddf.md @@ -1,15 +1,12 @@ --- title: Office DDF description: This topic shows the OMA DM device description framework (DDF) for the Office configuration service provider. DDF files are used only with OMA DM provisioning XML. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Office DDF diff --git a/windows/client-management/mdm/oma-dm-protocol-support.md b/windows/client-management/mdm/oma-dm-protocol-support.md index 62ad8a9ebb..8ebb0eebf3 100644 --- a/windows/client-management/mdm/oma-dm-protocol-support.md +++ b/windows/client-management/mdm/oma-dm-protocol-support.md @@ -1,15 +1,12 @@ --- title: OMA DM protocol support description: OMA DM protocol support -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: e882aaae-447e-4bd4-9275-463824da4fa0 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- diff --git a/windows/client-management/mdm/on-premise-authentication-device-enrollment.md b/windows/client-management/mdm/on-premise-authentication-device-enrollment.md index b9a90f2614..2ecd4d724f 100644 --- a/windows/client-management/mdm/on-premise-authentication-device-enrollment.md +++ b/windows/client-management/mdm/on-premise-authentication-device-enrollment.md @@ -1,15 +1,12 @@ --- title: On-premise authentication device enrollment description: This section provides an example of the mobile device enrollment protocol using on-premise authentication policy. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 626AC8B4-7575-4C41-8D59-185D607E3A47 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # On-premise authentication device enrollment diff --git a/windows/client-management/mdm/passportforwork-csp.md b/windows/client-management/mdm/passportforwork-csp.md index ba168ff230..8faa4ccb96 100644 --- a/windows/client-management/mdm/passportforwork-csp.md +++ b/windows/client-management/mdm/passportforwork-csp.md @@ -1,15 +1,12 @@ --- title: PassportForWork CSP description: The PassportForWork configuration service provider is used to provision Windows Hello for Business (formerly Microsoft Passport for Work). -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 3BAE4827-5497-41EE-B47F-5C071ADB2C51 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # PassportForWork CSP diff --git a/windows/client-management/mdm/passportforwork-ddf.md b/windows/client-management/mdm/passportforwork-ddf.md index d143881755..e425bb220d 100644 --- a/windows/client-management/mdm/passportforwork-ddf.md +++ b/windows/client-management/mdm/passportforwork-ddf.md @@ -1,15 +1,12 @@ --- title: PassportForWork DDF description: This topic shows the OMA DM device description framework (DDF) for the PassportForWork 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.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # PassportForWork DDF diff --git a/windows/client-management/mdm/personalization-csp.md b/windows/client-management/mdm/personalization-csp.md index 0a01a02817..85c52cab60 100644 --- a/windows/client-management/mdm/personalization-csp.md +++ b/windows/client-management/mdm/personalization-csp.md @@ -1,14 +1,11 @@ --- title: Personalization CSP description: Personalization CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Personalization CSP diff --git a/windows/client-management/mdm/personalization-ddf.md b/windows/client-management/mdm/personalization-ddf.md index ee0e9087ca..85d8ef7bb0 100644 --- a/windows/client-management/mdm/personalization-ddf.md +++ b/windows/client-management/mdm/personalization-ddf.md @@ -1,14 +1,11 @@ --- title: Personalization DDF file description: Personalization DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Personalization DDF file diff --git a/windows/client-management/mdm/policy-admx-backed.md b/windows/client-management/mdm/policy-admx-backed.md index 4643ba8bb8..643af44e7a 100644 --- a/windows/client-management/mdm/policy-admx-backed.md +++ b/windows/client-management/mdm/policy-admx-backed.md @@ -1,15 +1,12 @@ --- title: Policy CSP - ADMX-backed policies description: Policy CSP - ADMX-backed policies -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 4F3A1134-D401-44FC-A583-6EDD3070BA4F -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Policy CSP - ADMX-backed policies diff --git a/windows/client-management/mdm/policy-configuration-service-provider.md b/windows/client-management/mdm/policy-configuration-service-provider.md index 497278c57e..6a2a63b9e5 100644 --- a/windows/client-management/mdm/policy-configuration-service-provider.md +++ b/windows/client-management/mdm/policy-configuration-service-provider.md @@ -1,15 +1,12 @@ --- title: Policy CSP description: Policy CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 4F3A1134-D401-44FC-A583-6EDD3070BA4F -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Policy CSP @@ -110,6 +107,9 @@ The following diagram shows the Policy configuration service provider in tree fo

    Supported operations are Add and Get. Does not support Delete. +> [!Note] +> The policies supported in Windows 10 S is the same as in Windows 10 Pro, except that policies under AppliationsDefaults are not suppported in Windows 10 S. +


    diff --git a/windows/client-management/mdm/policy-ddf-file.md b/windows/client-management/mdm/policy-ddf-file.md index 3edb63ebe7..3a2d11e3db 100644 --- a/windows/client-management/mdm/policy-ddf-file.md +++ b/windows/client-management/mdm/policy-ddf-file.md @@ -1,15 +1,12 @@ --- title: Policy DDF file description: Policy DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: D90791B5-A772-4AF8-B058-5D566865AF8D -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Policy DDF file diff --git a/windows/client-management/mdm/policymanager-csp.md b/windows/client-management/mdm/policymanager-csp.md index c20fa69027..8124940a17 100644 --- a/windows/client-management/mdm/policymanager-csp.md +++ b/windows/client-management/mdm/policymanager-csp.md @@ -1,15 +1,12 @@ --- title: PolicyManager CSP description: PolicyManager CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 048427b1-6024-4660-8660-bd91c583f7f9 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # PolicyManager CSP diff --git a/windows/client-management/mdm/provisioning-csp.md b/windows/client-management/mdm/provisioning-csp.md index 9d7fe6b775..9ae10f0f2c 100644 --- a/windows/client-management/mdm/provisioning-csp.md +++ b/windows/client-management/mdm/provisioning-csp.md @@ -1,15 +1,12 @@ --- title: Provisioning CSP description: The Provisioning configuration service provider is used for bulk user enrollment to an MDM service. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 5D6C17BE-727A-4AFA-9F30-B34C1EA1D2AE -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Provisioning CSP diff --git a/windows/client-management/mdm/proxy-csp.md b/windows/client-management/mdm/proxy-csp.md index 2c69cb99be..65e4ceb727 100644 --- a/windows/client-management/mdm/proxy-csp.md +++ b/windows/client-management/mdm/proxy-csp.md @@ -1,15 +1,12 @@ --- title: PROXY CSP description: PROXY CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 9904d44c-4a1e-4ae7-a6c7-5dba06cb16ce -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # PROXY CSP diff --git a/windows/client-management/mdm/push-notification-windows-mdm.md b/windows/client-management/mdm/push-notification-windows-mdm.md index ae58089129..e34d5f94f2 100644 --- a/windows/client-management/mdm/push-notification-windows-mdm.md +++ b/windows/client-management/mdm/push-notification-windows-mdm.md @@ -4,15 +4,12 @@ description: The DMClient CSP supports the ability to configure push-initiated d MS-HAID: - 'p\_phdevicemgmt.push\_notification\_support\_for\_device\_management' - 'p\_phDeviceMgmt.push\_notification\_windows\_mdm' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 9031C4FE-212A-4481-A1B0-4C3190B388AE -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- diff --git a/windows/client-management/mdm/pxlogical-csp.md b/windows/client-management/mdm/pxlogical-csp.md index 16e33e0a5e..d3391b6066 100644 --- a/windows/client-management/mdm/pxlogical-csp.md +++ b/windows/client-management/mdm/pxlogical-csp.md @@ -1,15 +1,12 @@ --- title: PXLOGICAL configuration service provider description: PXLOGICAL configuration service provider -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: b5fc84d4-aa32-4edd-95f1-a6a9c0feb459 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # PXLOGICAL configuration service provider diff --git a/windows/client-management/mdm/reboot-csp.md b/windows/client-management/mdm/reboot-csp.md index 8b7546365e..6180829e89 100644 --- a/windows/client-management/mdm/reboot-csp.md +++ b/windows/client-management/mdm/reboot-csp.md @@ -1,15 +1,12 @@ --- title: Reboot CSP description: Reboot CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 4E3F1225-BBAD-40F5-A1AB-FF221B6BAF48 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Reboot CSP diff --git a/windows/client-management/mdm/reboot-ddf-file.md b/windows/client-management/mdm/reboot-ddf-file.md index 1854905947..714d7255ec 100644 --- a/windows/client-management/mdm/reboot-ddf-file.md +++ b/windows/client-management/mdm/reboot-ddf-file.md @@ -1,15 +1,12 @@ --- title: Reboot DDF file description: This topic shows the OMA DM device description framework (DDF) for the Reboot configuration service provider. DDF files are used only with OMA DM provisioning XML. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: ABBD850C-E744-462C-88E7-CA3F43D80DB1 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Reboot DDF file diff --git a/windows/client-management/mdm/reclaim-seat-from-user.md b/windows/client-management/mdm/reclaim-seat-from-user.md index 8f29cf0f62..ee5bc80e60 100644 --- a/windows/client-management/mdm/reclaim-seat-from-user.md +++ b/windows/client-management/mdm/reclaim-seat-from-user.md @@ -1,15 +1,12 @@ --- title: Reclaim seat from user description: The Reclaim seat from user operation returns reclaimed seats for a user in the Windows Store for Business. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: E2C3C899-D0AD-469A-A319-31A420472A4C -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Reclaim seat from user diff --git a/windows/client-management/mdm/register-your-free-azure-active-directory-subscription.md b/windows/client-management/mdm/register-your-free-azure-active-directory-subscription.md index 0b4b04eb62..344a2176e6 100644 --- a/windows/client-management/mdm/register-your-free-azure-active-directory-subscription.md +++ b/windows/client-management/mdm/register-your-free-azure-active-directory-subscription.md @@ -1,15 +1,12 @@ --- title: Register your free Azure Active Directory subscription description: If you have paid subscriptions to Office 365, Microsoft Dynamics CRM Online, Enterprise Mobility Suite, or other Microsoft services, you have a free subscription to Azure AD. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 97DCD303-BB11-4AFF-84FE-B7F14CDF64F7 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Register your free Azure Active Directory subscription diff --git a/windows/client-management/mdm/registry-csp.md b/windows/client-management/mdm/registry-csp.md index fdd8e867f6..3874d0f2d7 100644 --- a/windows/client-management/mdm/registry-csp.md +++ b/windows/client-management/mdm/registry-csp.md @@ -1,15 +1,12 @@ --- title: Registry CSP description: Registry CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 2307e3fd-7b61-4f00-94e1-a639571f2c9d -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Registry CSP diff --git a/windows/client-management/mdm/registry-ddf-file.md b/windows/client-management/mdm/registry-ddf-file.md index 179ce9f272..5ee429e5ca 100644 --- a/windows/client-management/mdm/registry-ddf-file.md +++ b/windows/client-management/mdm/registry-ddf-file.md @@ -1,15 +1,12 @@ --- title: Registry DDF file description: Registry DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 29b5cc07-f349-4567-8a77-387d816a9d15 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Registry DDF file diff --git a/windows/client-management/mdm/remotefind-csp.md b/windows/client-management/mdm/remotefind-csp.md index f11afd65e5..29447d3ed2 100644 --- a/windows/client-management/mdm/remotefind-csp.md +++ b/windows/client-management/mdm/remotefind-csp.md @@ -1,15 +1,12 @@ --- title: RemoteFind CSP description: The RemoteFind configuration service provider retrieves the location information for a particular device. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 2EB02824-65BF-4B40-A338-672D219AF5A0 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # RemoteFind CSP diff --git a/windows/client-management/mdm/remotefind-ddf-file.md b/windows/client-management/mdm/remotefind-ddf-file.md index 746dc26f77..c30856f87d 100644 --- a/windows/client-management/mdm/remotefind-ddf-file.md +++ b/windows/client-management/mdm/remotefind-ddf-file.md @@ -1,15 +1,12 @@ --- title: RemoteFind DDF file description: This topic shows the OMA DM device description framework (DDF) for the RemoteFind configuration service provider. DDF files are used only with OMA DM provisioning XML. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 5864CBB8-2030-459E-BCF6-9ACB69206FEA -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # RemoteFind DDF file diff --git a/windows/client-management/mdm/remotelock-csp.md b/windows/client-management/mdm/remotelock-csp.md index 6afa9644ad..1ac58b24af 100644 --- a/windows/client-management/mdm/remotelock-csp.md +++ b/windows/client-management/mdm/remotelock-csp.md @@ -1,15 +1,12 @@ --- title: RemoteLock CSP description: RemoteLock CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: c7889331-5aa3-4efe-9a7e-20d3f433659b -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # RemoteLock CSP diff --git a/windows/client-management/mdm/remotelock-ddf-file.md b/windows/client-management/mdm/remotelock-ddf-file.md index 186a01cf7e..1f09e6508c 100644 --- a/windows/client-management/mdm/remotelock-ddf-file.md +++ b/windows/client-management/mdm/remotelock-ddf-file.md @@ -1,15 +1,12 @@ --- title: RemoteLock DDF file description: RemoteLock DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: A301AE26-1BF1-4328-99AB-1ABBA4960797 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # RemoteLock DDF file diff --git a/windows/client-management/mdm/remotering-csp.md b/windows/client-management/mdm/remotering-csp.md index 9e472ec2d6..4f16070cb7 100644 --- a/windows/client-management/mdm/remotering-csp.md +++ b/windows/client-management/mdm/remotering-csp.md @@ -1,15 +1,12 @@ --- title: RemoteRing CSP description: RemoteRing CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 70015243-c07f-46cb-a0f9-4b4ad13a5609 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # RemoteRing CSP diff --git a/windows/client-management/mdm/remotering-ddf-file.md b/windows/client-management/mdm/remotering-ddf-file.md index 388027a75e..8d690e645e 100644 --- a/windows/client-management/mdm/remotering-ddf-file.md +++ b/windows/client-management/mdm/remotering-ddf-file.md @@ -1,15 +1,12 @@ --- title: RemoteRing DDF file description: This topic shows the OMA DM device description framework (DDF) for the RemoteRing configuration service provider. DDF files are used only with OMA DM provisioning XML. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 6815267F-212B-4370-8B72-A457E8000F7B -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # RemoteRing DDF file diff --git a/windows/client-management/mdm/remotewipe-csp.md b/windows/client-management/mdm/remotewipe-csp.md index 5d39d7b7b5..81a742eab8 100644 --- a/windows/client-management/mdm/remotewipe-csp.md +++ b/windows/client-management/mdm/remotewipe-csp.md @@ -1,15 +1,12 @@ --- title: RemoteWipe CSP description: RemoteWipe CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 6e89bd37-7680-4940-8a67-11ed062ffb70 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # RemoteWipe CSP diff --git a/windows/client-management/mdm/remotewipe-ddf-file.md b/windows/client-management/mdm/remotewipe-ddf-file.md index 8bcac9fb38..fa91cdb835 100644 --- a/windows/client-management/mdm/remotewipe-ddf-file.md +++ b/windows/client-management/mdm/remotewipe-ddf-file.md @@ -1,15 +1,12 @@ --- title: RemoteWipe DDF file description: RemoteWipe DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 10ec4fb7-f911-4d0c-9a8f-e96bf5faea0c -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # RemoteWipe DDF file diff --git a/windows/client-management/mdm/reporting-csp.md b/windows/client-management/mdm/reporting-csp.md index 498de35717..83d3d3f5b5 100644 --- a/windows/client-management/mdm/reporting-csp.md +++ b/windows/client-management/mdm/reporting-csp.md @@ -1,15 +1,12 @@ --- title: Reporting CSP description: The Reporting configuration service provider is used to retrieve Windows Information Protection (formerly known as Enterprise Data Protection) and security auditing logs. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 148441A6-D9E1-43D8-ADEE-FB62E85A39F7 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Reporting CSP diff --git a/windows/client-management/mdm/reporting-ddf-file.md b/windows/client-management/mdm/reporting-ddf-file.md index 97a063b1d3..ff3de3aab3 100644 --- a/windows/client-management/mdm/reporting-ddf-file.md +++ b/windows/client-management/mdm/reporting-ddf-file.md @@ -1,15 +1,12 @@ --- title: Reporting DDF file description: This topic shows the OMA DM device description framework (DDF) for the Reporting configuration service provider. This CSP was added in Windows 10, version 1511. Support for desktop security auditing was added for the desktop in Windows 10, version 1607. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 7A5B79DB-9571-4F7C-ABED-D79CD08C1E35 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Reporting DDF file diff --git a/windows/client-management/mdm/rest-api-reference-windows-store-for-business.md b/windows/client-management/mdm/rest-api-reference-windows-store-for-business.md index 7f7b8824d9..87ad349555 100644 --- a/windows/client-management/mdm/rest-api-reference-windows-store-for-business.md +++ b/windows/client-management/mdm/rest-api-reference-windows-store-for-business.md @@ -4,15 +4,12 @@ description: REST API reference for Windows Store for Business MS-HAID: - 'p\_phdevicemgmt.business\_store\_portal\_management\_rest\_api\_reference' - 'p\_phDeviceMgmt.rest\_api\_reference\_windows\_store\_for\_Business' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 8C48A879-525A-471F-B0FD-506E743A7D2F -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # REST API reference for Windows Store for Business diff --git a/windows/client-management/mdm/rootcacertificates-csp.md b/windows/client-management/mdm/rootcacertificates-csp.md index 669dbc6dab..ae0852dd78 100644 --- a/windows/client-management/mdm/rootcacertificates-csp.md +++ b/windows/client-management/mdm/rootcacertificates-csp.md @@ -1,15 +1,12 @@ --- title: RootCATrustedCertificates CSP description: RootCATrustedCertificates CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: F2F25DEB-9DB3-40FB-BC3C-B816CE470D61 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # RootCATrustedCertificates CSP diff --git a/windows/client-management/mdm/rootcacertificates-ddf-file.md b/windows/client-management/mdm/rootcacertificates-ddf-file.md index b9af3d73bd..e825e38ead 100644 --- a/windows/client-management/mdm/rootcacertificates-ddf-file.md +++ b/windows/client-management/mdm/rootcacertificates-ddf-file.md @@ -1,15 +1,12 @@ --- title: RootCATrustedCertificates DDF file description: RootCATrustedCertificates DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 06D8787B-D3E1-4D4B-8A21-8045A8F85C1C -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # RootCATrustedCertificates DDF file diff --git a/windows/client-management/mdm/samples-for-writing-a-custom-configuration-service-provider.md b/windows/client-management/mdm/samples-for-writing-a-custom-configuration-service-provider.md index 8af994de2c..8ab213e4cf 100644 --- a/windows/client-management/mdm/samples-for-writing-a-custom-configuration-service-provider.md +++ b/windows/client-management/mdm/samples-for-writing-a-custom-configuration-service-provider.md @@ -1,15 +1,12 @@ --- title: Samples for writing a custom configuration service provider description: Samples for writing a custom configuration service provider -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: ccda4d62-7ce1-483b-912f-25d50c974270 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Samples for writing a custom configuration service provider diff --git a/windows/client-management/mdm/secureassessment-csp.md b/windows/client-management/mdm/secureassessment-csp.md index e94006221c..8f671e0d21 100644 --- a/windows/client-management/mdm/secureassessment-csp.md +++ b/windows/client-management/mdm/secureassessment-csp.md @@ -1,15 +1,12 @@ --- title: SecureAssessment CSP description: SecureAssessment CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 6808BE4B-961E-4638-BF15-FD7841D1C00A -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # SecureAssessment CSP diff --git a/windows/client-management/mdm/secureassessment-ddf-file.md b/windows/client-management/mdm/secureassessment-ddf-file.md index fa93e99ad4..57601f53e0 100644 --- a/windows/client-management/mdm/secureassessment-ddf-file.md +++ b/windows/client-management/mdm/secureassessment-ddf-file.md @@ -1,15 +1,12 @@ --- title: SecureAssessment DDF file description: This topic shows the OMA DM device description framework (DDF) for the SecureAssessment configuration service provider. DDF files are used only with OMA DM provisioning XML. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 68D17F2A-FAEA-4608-8727-DBEC1D7BE48A -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # SecureAssessment DDF file diff --git a/windows/client-management/mdm/securitypolicy-csp.md b/windows/client-management/mdm/securitypolicy-csp.md index 6fc15e30bb..28e87b7c43 100644 --- a/windows/client-management/mdm/securitypolicy-csp.md +++ b/windows/client-management/mdm/securitypolicy-csp.md @@ -1,15 +1,12 @@ --- title: SecurityPolicy CSP description: SecurityPolicy CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 6014f8fe-f91b-49f3-a357-bdf625545bc9 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # SecurityPolicy CSP diff --git a/windows/client-management/mdm/server-requirements-windows-mdm.md b/windows/client-management/mdm/server-requirements-windows-mdm.md index bc372c4f37..0ced05ef07 100644 --- a/windows/client-management/mdm/server-requirements-windows-mdm.md +++ b/windows/client-management/mdm/server-requirements-windows-mdm.md @@ -4,15 +4,12 @@ description: Server requirements for using OMA DM to manage Windows devices MS-HAID: - 'p\_phDeviceMgmt.server\_requirements\_for\_oma\_dm' - 'p\_phDeviceMgmt.server\_requirements\_windows\_mdm' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 5b90b631-62a6-4949-b53a-01275fd304b2 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Server requirements for using OMA DM to manage Windows devices diff --git a/windows/client-management/mdm/sharedpc-csp.md b/windows/client-management/mdm/sharedpc-csp.md index fd508bddc8..e8b16b4a18 100644 --- a/windows/client-management/mdm/sharedpc-csp.md +++ b/windows/client-management/mdm/sharedpc-csp.md @@ -1,15 +1,12 @@ --- title: SharedPC CSP description: SharedPC CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 31273166-1A1E-4F96-B176-CB42ECB80957 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # SharedPC CSP diff --git a/windows/client-management/mdm/sharedpc-ddf-file.md b/windows/client-management/mdm/sharedpc-ddf-file.md index fe6259624e..e666ac45e9 100644 --- a/windows/client-management/mdm/sharedpc-ddf-file.md +++ b/windows/client-management/mdm/sharedpc-ddf-file.md @@ -1,15 +1,12 @@ --- title: SharedPC DDF file description: SharedPC DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 70234197-07D4-478E-97BB-F6C651C0B970 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # SharedPC DDF file diff --git a/windows/client-management/mdm/storage-csp.md b/windows/client-management/mdm/storage-csp.md index 53b364243d..e383685013 100644 --- a/windows/client-management/mdm/storage-csp.md +++ b/windows/client-management/mdm/storage-csp.md @@ -1,15 +1,12 @@ --- title: Storage CSP description: Storage CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: b19bdb54-53ed-42ce-a5a1-269379013f57 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Storage CSP diff --git a/windows/client-management/mdm/storage-ddf-file.md b/windows/client-management/mdm/storage-ddf-file.md index 087e36a61f..2cf0a17551 100644 --- a/windows/client-management/mdm/storage-ddf-file.md +++ b/windows/client-management/mdm/storage-ddf-file.md @@ -1,15 +1,12 @@ --- title: Storage DDF file description: Storage DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 247062A3-4DFB-4B14-A3D1-68D02C27703C -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Storage DDF file diff --git a/windows/client-management/mdm/structure-of-oma-dm-provisioning-files.md b/windows/client-management/mdm/structure-of-oma-dm-provisioning-files.md index c8e61157a6..031e69f53b 100644 --- a/windows/client-management/mdm/structure-of-oma-dm-provisioning-files.md +++ b/windows/client-management/mdm/structure-of-oma-dm-provisioning-files.md @@ -1,15 +1,12 @@ --- title: Structure of OMA DM provisioning files description: Structure of OMA DM provisioning files -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 7bd3ef57-c76c-459b-b63f-c5a333ddc2bc -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Structure of OMA DM provisioning files diff --git a/windows/client-management/mdm/supl-csp.md b/windows/client-management/mdm/supl-csp.md index 25acb22d8e..150ca95701 100644 --- a/windows/client-management/mdm/supl-csp.md +++ b/windows/client-management/mdm/supl-csp.md @@ -1,15 +1,12 @@ --- title: SUPL CSP description: SUPL CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: afad0120-1126-4fc5-8e7a-64b9f2a5eae1 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # SUPL CSP diff --git a/windows/client-management/mdm/supl-ddf-file.md b/windows/client-management/mdm/supl-ddf-file.md index eedb7f2b31..266c2dcaf6 100644 --- a/windows/client-management/mdm/supl-ddf-file.md +++ b/windows/client-management/mdm/supl-ddf-file.md @@ -1,15 +1,12 @@ --- title: SUPL DDF file description: This topic shows the OMA DM device description framework (DDF) for the SUPL configuration service provider. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 514B7854-80DC-4ED9-9805-F5276BF38034 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # SUPL DDF file diff --git a/windows/client-management/mdm/surfacehub-csp.md b/windows/client-management/mdm/surfacehub-csp.md index aa210d64d8..f751e53b34 100644 --- a/windows/client-management/mdm/surfacehub-csp.md +++ b/windows/client-management/mdm/surfacehub-csp.md @@ -1,15 +1,12 @@ --- title: SurfaceHub CSP description: The SurfaceHub configuration service provider (CSP) is used to configure Microsoft Surface Hub settings. This CSP was added in Windows 10, version 1511. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 36FBBC32-AD6A-41F1-86BF-B384891AA693 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # SurfaceHub CSP diff --git a/windows/client-management/mdm/surfacehub-ddf-file.md b/windows/client-management/mdm/surfacehub-ddf-file.md index d47a546466..590539f3bb 100644 --- a/windows/client-management/mdm/surfacehub-ddf-file.md +++ b/windows/client-management/mdm/surfacehub-ddf-file.md @@ -1,15 +1,12 @@ --- title: SurfaceHub DDF file description: This topic shows the OMA DM device description framework (DDF) for the SurfaceHub configuration service provider. This CSP was added in Windows 10, version 1511. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: D34DA1C2-09A2-4BA3-BE99-AC483C278436 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # SurfaceHub DDF file diff --git a/windows/client-management/mdm/understanding-admx-backed-policies.md b/windows/client-management/mdm/understanding-admx-backed-policies.md index 6844ac7526..a308149484 100644 --- a/windows/client-management/mdm/understanding-admx-backed-policies.md +++ b/windows/client-management/mdm/understanding-admx-backed-policies.md @@ -1,11 +1,11 @@ --- title: Understanding ADMX-backed policies description: Starting in Windows 10, version 1703, you can use ADMX-backed policies for Windows 10 mobile device management (MDM) across Windows 10 devices. -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Understanding ADMX-backed policies diff --git a/windows/client-management/mdm/unifiedwritefilter-csp.md b/windows/client-management/mdm/unifiedwritefilter-csp.md index a63264b46d..8ef347d5c5 100644 --- a/windows/client-management/mdm/unifiedwritefilter-csp.md +++ b/windows/client-management/mdm/unifiedwritefilter-csp.md @@ -1,15 +1,12 @@ --- title: UnifiedWriteFilter CSP description: The UnifiedWriteFilter (UWF) configuration service provider enables the IT administrator to remotely manage the UWF to help protect physical storage media including any writable storage type. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: F4716AC6-0AA5-4A67-AECE-E0F200BA95EB -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # UnifiedWriteFilter CSP diff --git a/windows/client-management/mdm/unifiedwritefilter-ddf.md b/windows/client-management/mdm/unifiedwritefilter-ddf.md index 5e72b27c72..ae3e8f02e5 100644 --- a/windows/client-management/mdm/unifiedwritefilter-ddf.md +++ b/windows/client-management/mdm/unifiedwritefilter-ddf.md @@ -1,15 +1,12 @@ --- title: UnifiedWriteFilter DDF File description: UnifiedWriteFilter DDF File -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 23A7316E-A298-43F7-9407-A65155C8CEA6 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # UnifiedWriteFilter DDF File diff --git a/windows/client-management/mdm/update-csp.md b/windows/client-management/mdm/update-csp.md index 0d4d052ca3..61923798e2 100644 --- a/windows/client-management/mdm/update-csp.md +++ b/windows/client-management/mdm/update-csp.md @@ -1,15 +1,12 @@ --- title: Update CSP description: Update CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: F1627B57-0749-47F6-A066-677FDD3D7359 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Update CSP diff --git a/windows/client-management/mdm/update-ddf-file.md b/windows/client-management/mdm/update-ddf-file.md index 564b1a164c..a7617b44d2 100644 --- a/windows/client-management/mdm/update-ddf-file.md +++ b/windows/client-management/mdm/update-ddf-file.md @@ -1,15 +1,12 @@ --- title: Update DDF file description: Update DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: E236E468-88F3-402A-BA7A-834ED38DD388 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Update DDF file diff --git a/windows/client-management/mdm/using-powershell-scripting-with-the-wmi-bridge-provider.md b/windows/client-management/mdm/using-powershell-scripting-with-the-wmi-bridge-provider.md index 779ba4eec8..8eda2844e1 100644 --- a/windows/client-management/mdm/using-powershell-scripting-with-the-wmi-bridge-provider.md +++ b/windows/client-management/mdm/using-powershell-scripting-with-the-wmi-bridge-provider.md @@ -1,15 +1,12 @@ --- title: Using PowerShell scripting with the WMI Bridge Provider description: This topic covers using PowerShell Cmdlet scripts to configure per-user and per-device policy settings, as well as how to invoke methods through the WMI Bridge Provider. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 238D45AD-3FD8-46F9-B7FB-6AEE42BE4C08 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Using PowerShell scripting with the WMI Bridge Provider diff --git a/windows/client-management/mdm/vpn-csp.md b/windows/client-management/mdm/vpn-csp.md index d087514fd2..7310156f21 100644 --- a/windows/client-management/mdm/vpn-csp.md +++ b/windows/client-management/mdm/vpn-csp.md @@ -1,15 +1,12 @@ --- title: VPN CSP description: VPN CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 05ca946a-1c0b-4e11-8d7e-854e14740707 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # VPN CSP diff --git a/windows/client-management/mdm/vpn-ddf-file.md b/windows/client-management/mdm/vpn-ddf-file.md index f742ca010e..d5e1303442 100644 --- a/windows/client-management/mdm/vpn-ddf-file.md +++ b/windows/client-management/mdm/vpn-ddf-file.md @@ -1,15 +1,12 @@ --- title: VPN DDF file description: VPN DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 728FCD9C-0B8E-413B-B54A-CD72C9F2B9EE -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # VPN DDF file diff --git a/windows/client-management/mdm/vpnv2-csp.md b/windows/client-management/mdm/vpnv2-csp.md index 5aaa8632b7..5b48d34a09 100644 --- a/windows/client-management/mdm/vpnv2-csp.md +++ b/windows/client-management/mdm/vpnv2-csp.md @@ -1,15 +1,12 @@ --- title: VPNv2 CSP description: VPNv2 CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 51ADA62E-1EE5-4F15-B2AD-52867F5B2AD2 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # VPNv2 CSP diff --git a/windows/client-management/mdm/vpnv2-ddf-file.md b/windows/client-management/mdm/vpnv2-ddf-file.md index 88ce8c7589..b91f59555f 100644 --- a/windows/client-management/mdm/vpnv2-ddf-file.md +++ b/windows/client-management/mdm/vpnv2-ddf-file.md @@ -1,15 +1,12 @@ --- title: VPNv2 DDF file description: This topic shows the OMA DM device description framework (DDF) for the VPNv2 configuration service provider. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 4E2F36B7-D2EE-4F48-AD1A-6BDE7E72CC94 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # VPNv2 DDF file diff --git a/windows/client-management/mdm/vpnv2-profile-xsd.md b/windows/client-management/mdm/vpnv2-profile-xsd.md index 96e6d32e57..8099da7143 100644 --- a/windows/client-management/mdm/vpnv2-profile-xsd.md +++ b/windows/client-management/mdm/vpnv2-profile-xsd.md @@ -1,15 +1,12 @@ --- title: ProfileXML XSD description: Here's the XSD for the ProfileXML node in VPNv2 CSP for Windows 10 and some profile examples. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 2F32E14B-F9B9-4760-AE94-E57F1D4DFDB3 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # ProfileXML XSD diff --git a/windows/client-management/mdm/w4-application-csp.md b/windows/client-management/mdm/w4-application-csp.md index 82856c77c2..1559b6350d 100644 --- a/windows/client-management/mdm/w4-application-csp.md +++ b/windows/client-management/mdm/w4-application-csp.md @@ -1,15 +1,12 @@ --- title: w4 APPLICATION CSP description: w4 APPLICATION CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: ef42b82a-1f04-49e4-8a48-bd4e439fc43a -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # w4 APPLICATION CSP diff --git a/windows/client-management/mdm/w7-application-csp.md b/windows/client-management/mdm/w7-application-csp.md index 71bb224ad9..cc931c7f9a 100644 --- a/windows/client-management/mdm/w7-application-csp.md +++ b/windows/client-management/mdm/w7-application-csp.md @@ -1,15 +1,12 @@ --- title: w7 APPLICATION CSP description: w7 APPLICATION CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 10f8aa16-5c89-455d-adcd-d7fb45d4e768 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # w7 APPLICATION CSP diff --git a/windows/client-management/mdm/wifi-csp.md b/windows/client-management/mdm/wifi-csp.md index a93b8c9e3f..d1ed9593eb 100644 --- a/windows/client-management/mdm/wifi-csp.md +++ b/windows/client-management/mdm/wifi-csp.md @@ -1,15 +1,12 @@ --- title: WiFi CSP description: WiFi CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: f927cb5f-9555-4029-838b-03fb68937f06 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # WiFi CSP diff --git a/windows/client-management/mdm/wifi-ddf-file.md b/windows/client-management/mdm/wifi-ddf-file.md index c8ca454737..4443fab25f 100644 --- a/windows/client-management/mdm/wifi-ddf-file.md +++ b/windows/client-management/mdm/wifi-ddf-file.md @@ -1,15 +1,12 @@ --- title: WiFi DDF file description: WiFi DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 00DE1DA7-23DE-4871-B3F0-28EB29A62D61 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # WiFi DDF file diff --git a/windows/client-management/mdm/win32-and-centennial-app-policy-configuration.md b/windows/client-management/mdm/win32-and-centennial-app-policy-configuration.md index 4fdd9516e1..17d48bf9fe 100644 --- a/windows/client-management/mdm/win32-and-centennial-app-policy-configuration.md +++ b/windows/client-management/mdm/win32-and-centennial-app-policy-configuration.md @@ -1,11 +1,11 @@ --- title: Win32 and Desktop Bridge app policy configuration description: Starting in Windows 10, version 1703, you can import ADMX files and set those ADMX-backed policies for Win32 and Desktop Bridge apps. -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Win32 and Desktop Bridge app policy configuration diff --git a/windows/client-management/mdm/win32appinventory-csp.md b/windows/client-management/mdm/win32appinventory-csp.md index 67ef056dbe..935df946c0 100644 --- a/windows/client-management/mdm/win32appinventory-csp.md +++ b/windows/client-management/mdm/win32appinventory-csp.md @@ -1,15 +1,12 @@ --- title: Win32AppInventory CSP description: Win32AppInventory CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: C0DEDD51-4EAD-4F8E-AEE2-CBE9658BCA22 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Win32AppInventory CSP diff --git a/windows/client-management/mdm/win32appinventory-ddf-file.md b/windows/client-management/mdm/win32appinventory-ddf-file.md index 893b52b222..97eafeb66c 100644 --- a/windows/client-management/mdm/win32appinventory-ddf-file.md +++ b/windows/client-management/mdm/win32appinventory-ddf-file.md @@ -1,15 +1,12 @@ --- title: Win32AppInventory DDF file description: Win32AppInventory DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: F6BCC10B-BFE4-40AB-AEEE-34679A4E15B0 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Win32AppInventory DDF file diff --git a/windows/client-management/mdm/windows-mdm-enterprise-settings.md b/windows/client-management/mdm/windows-mdm-enterprise-settings.md index f50b20ad5e..51943be64f 100644 --- a/windows/client-management/mdm/windows-mdm-enterprise-settings.md +++ b/windows/client-management/mdm/windows-mdm-enterprise-settings.md @@ -4,15 +4,12 @@ description: The actual management interaction between the device and server is MS-HAID: - 'p\_phdevicemgmt.enterprise\_settings\_\_policies\_\_and\_app\_management' - 'p\_phDeviceMgmt.windows\_mdm\_enterprise\_settings' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 92711D65-3022-4789-924B-602BE3187E23 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # Enterprise settings, policies, and app management diff --git a/windows/client-management/mdm/windowsadvancedthreatprotection-csp.md b/windows/client-management/mdm/windowsadvancedthreatprotection-csp.md index ba5104057e..bced249094 100644 --- a/windows/client-management/mdm/windowsadvancedthreatprotection-csp.md +++ b/windows/client-management/mdm/windowsadvancedthreatprotection-csp.md @@ -1,15 +1,12 @@ --- title: WindowsAdvancedThreatProtection CSP description: WindowsAdvancedThreatProtection CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 6C3054CA-9890-4C08-9DB6-FBEEB74699A8 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # WindowsAdvancedThreatProtection CSP diff --git a/windows/client-management/mdm/windowsadvancedthreatprotection-ddf.md b/windows/client-management/mdm/windowsadvancedthreatprotection-ddf.md index 06cf87d740..135648a616 100644 --- a/windows/client-management/mdm/windowsadvancedthreatprotection-ddf.md +++ b/windows/client-management/mdm/windowsadvancedthreatprotection-ddf.md @@ -1,15 +1,12 @@ --- title: WindowsAdvancedThreatProtection DDF file description: WindowsAdvancedThreatProtection DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 0C62A790-4351-48AF-89FD-7D46C42D13E0 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # WindowsAdvancedThreatProtection DDF file diff --git a/windows/client-management/mdm/windowslicensing-csp.md b/windows/client-management/mdm/windowslicensing-csp.md index edff8cdb64..bdc1b02533 100644 --- a/windows/client-management/mdm/windowslicensing-csp.md +++ b/windows/client-management/mdm/windowslicensing-csp.md @@ -1,15 +1,12 @@ --- title: WindowsLicensing CSP description: WindowsLicensing CSP -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: E6BC6B0D-1F16-48A5-9AC4-76D69A7EDDA6 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # WindowsLicensing CSP diff --git a/windows/client-management/mdm/windowslicensing-ddf-file.md b/windows/client-management/mdm/windowslicensing-ddf-file.md index 68cec1698d..5ac78fc98d 100644 --- a/windows/client-management/mdm/windowslicensing-ddf-file.md +++ b/windows/client-management/mdm/windowslicensing-ddf-file.md @@ -1,15 +1,12 @@ --- title: WindowsLicensing DDF file description: WindowsLicensing DDF file -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 2A24C922-A167-4CEE-8F74-08E7453800D2 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # WindowsLicensing DDF file diff --git a/windows/client-management/mdm/windowssecurityauditing-csp.md b/windows/client-management/mdm/windowssecurityauditing-csp.md index 231a3c0329..686a058d93 100644 --- a/windows/client-management/mdm/windowssecurityauditing-csp.md +++ b/windows/client-management/mdm/windowssecurityauditing-csp.md @@ -1,15 +1,12 @@ --- title: WindowsSecurityAuditing CSP description: The WindowsSecurityAuditing configuration service provider (CSP) is used to enable logging of security audit events. This CSP was added in Windows 10, version 1511. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 611DF7FF-21CE-476C-AAB5-3D09C1CDF08A -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # WindowsSecurityAuditing CSP diff --git a/windows/client-management/mdm/windowssecurityauditing-ddf-file.md b/windows/client-management/mdm/windowssecurityauditing-ddf-file.md index ec06383f5d..cd9ef72d61 100644 --- a/windows/client-management/mdm/windowssecurityauditing-ddf-file.md +++ b/windows/client-management/mdm/windowssecurityauditing-ddf-file.md @@ -1,15 +1,12 @@ --- title: WindowsSecurityAuditing DDF file description: This topic shows the OMA DM device description framework (DDF) for the WindowsSecurityAuditing configuration service provider. This CSP was added in Windows 10, version 1511. -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: B1F9A5FA-185B-48C6-A7F4-0F0F23B971F0 -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # WindowsSecurityAuditing DDF file diff --git a/windows/client-management/mdm/wmi-providers-supported-in-windows.md b/windows/client-management/mdm/wmi-providers-supported-in-windows.md index 45bb1e69fe..ade8ecd858 100644 --- a/windows/client-management/mdm/wmi-providers-supported-in-windows.md +++ b/windows/client-management/mdm/wmi-providers-supported-in-windows.md @@ -4,15 +4,12 @@ description: WMI providers supported in Windows 10 MS-HAID: - 'p\_phdevicemgmt.wmi\_providers\_supported\_in\_windows\_10\_technical\_preview' - 'p\_phDeviceMgmt.wmi\_providers\_supported\_in\_windows' -MSHAttr: -- 'PreferredSiteName:MSDN' -- 'PreferredLib:/library/windows/hardware' ms.assetid: 7D533044-AAD7-4B8F-B71B-9D52C15A168A -ms.author: windows-hardware-design-content -ms.date: 05/02/2017 +ms.author: maricia ms.topic: article -ms.prod: windows-hardware -ms.technology: windows-oem +ms.prod: w10 +ms.technology: windows +author: nickbrower --- # WMI providers supported in Windows 10 diff --git a/windows/configuration/windows-10-start-layout-options-and-policies.md b/windows/configuration/windows-10-start-layout-options-and-policies.md index d8b003ff30..5fc6d0a993 100644 --- a/windows/configuration/windows-10-start-layout-options-and-policies.md +++ b/windows/configuration/windows-10-start-layout-options-and-policies.md @@ -64,7 +64,7 @@ There are three categories of apps that might be pinned to a taskbar: * Apps pinned by the enterprise, such as in an unattended Windows setup >[!NOTE] - >The earlier method of using [TaskbarLinks](https://go.microsoft.com/fwlink/p/?LinkId=761230) in an unattended Windows setup file is deprecated in Windows 10, version 1607. + >We recommend using [the layoutmodification.xml method](configure-windows-10-taskbar.md) to configure taskbar options, rather than the earlier method of using [TaskbarLinks](https://go.microsoft.com/fwlink/p/?LinkId=761230) in an unattended Windows setup file. The following example shows how apps will be pinned - Windows default apps to the left (blue circle), apps pinned by the user in the center (orange triangle), and apps that you pin using XML to the right (green square). diff --git a/windows/device-security/auditing/audit-other-object-access-events.md b/windows/device-security/auditing/audit-other-object-access-events.md index 4501674589..ed9fe36ec9 100644 --- a/windows/device-security/auditing/audit-other-object-access-events.md +++ b/windows/device-security/auditing/audit-other-object-access-events.md @@ -22,9 +22,9 @@ Audit Other Object Access Events allows you to monitor operations with scheduled | Computer Type | General Success | General Failure | Stronger Success | Stronger Failure | Comments | |-------------------|-----------------|-----------------|------------------|------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| Domain Controller | Yes | Yes | Yes | Yes | We recommend Success auditing first of all because of scheduled tasks events.
    We recommend Failure auditing to get events about possible ICPM DoS attack. | -| Member Server | Yes | Yes | Yes | Yes | We recommend Success auditing first of all because of scheduled tasks events.
    We recommend Failure auditing to get events about possible ICPM DoS attack. | -| Workstation | Yes | Yes | Yes | Yes | We recommend Success auditing first of all because of scheduled tasks events.
    We recommend Failure auditing to get events about possible ICPM DoS attack. | +| Domain Controller | Yes | Yes | Yes | Yes | We recommend Success auditing first of all because of scheduled tasks events.
    We recommend Failure auditing to get events about possible ICMP DoS attack. | +| Member Server | Yes | Yes | Yes | Yes | We recommend Success auditing first of all because of scheduled tasks events.
    We recommend Failure auditing to get events about possible ICMP DoS attack. | +| Workstation | Yes | Yes | Yes | Yes | We recommend Success auditing first of all because of scheduled tasks events.
    We recommend Failure auditing to get events about possible ICMP DoS attack. | **Events List:** diff --git a/windows/device-security/auditing/event-5148.md b/windows/device-security/auditing/event-5148.md index 7751cd9686..305afcbee8 100644 --- a/windows/device-security/auditing/event-5148.md +++ b/windows/device-security/auditing/event-5148.md @@ -15,7 +15,7 @@ author: Mir0sh - Windows Server 2016 -In most circumstances, this event occurs very rarely. It is designed to be generated when an ICPM DoS attack starts or was detected. +In most circumstances, this event occurs very rarely. It is designed to be generated when an ICMP DoS attack starts or was detected. There is no example of this event in this document. diff --git a/windows/device-security/auditing/event-5149.md b/windows/device-security/auditing/event-5149.md index 24b3f6ab89..82a1d84b8e 100644 --- a/windows/device-security/auditing/event-5149.md +++ b/windows/device-security/auditing/event-5149.md @@ -15,7 +15,7 @@ author: Mir0sh - Windows Server 2016 -In most circumstances, this event occurs very rarely. It is designed to be generated when an ICPM DoS attack ended. +In most circumstances, this event occurs very rarely. It is designed to be generated when an ICMP DoS attack ended. There is no example of this event in this document. diff --git a/windows/threat-protection/windows-defender-atp/troubleshoot-onboarding-windows-defender-advanced-threat-protection.md b/windows/threat-protection/windows-defender-atp/troubleshoot-onboarding-windows-defender-advanced-threat-protection.md index 6e7445cde4..a43f5f374c 100644 --- a/windows/threat-protection/windows-defender-atp/troubleshoot-onboarding-windows-defender-advanced-threat-protection.md +++ b/windows/threat-protection/windows-defender-atp/troubleshoot-onboarding-windows-defender-advanced-threat-protection.md @@ -64,7 +64,7 @@ Event ID | Error Type | Resolution steps :---|:---|:--- 5 | Offboarding data was found but couldn't be deleted | Check the permissions on the registry, specifically ```HKLM\SOFTWARE\Policies\Microsoft\Windows Advanced Threat Protection```. 10 | Onboarding data couldn't be written to registry | Check the permissions on the registry, specifically
    ```HKLM\SOFTWARE\Policies\Microsoft\Windows Advanced Threat```.
    Verify that the script was ran as an administrator. -15 | Failed to start SENSE service |Check the service health (```sc query sense``` command). Make sure it's not in an intermediate state (*'Pending_Stopped'*, *'Pending_Running'*) and try to run the script again (with administrator rights). +15 | Failed to start SENSE service |Check the service health (```sc query sense``` command). Make sure it's not in an intermediate state (*'Pending_Stopped'*, *'Pending_Running'*) and try to run the script again (with administrator rights).

    If the endpoint is running Windows 10, version 1607 and running the command `sc query sense` returns `START_PENDING`, reboot the machine. If rebooting the machine doesn't address the issue, upgrade to KB4015217 and try onboarding again. 15 | Failed to start SENSE service | If the message of the error is: System error 577 has occurred. You need to enable the Windows Defender ELAM driver, see [Ensure that Windows Defender is not disabled by a policy](#ensure-that-windows-defender-is-not-disabled-by-a-policy) for instructions. 30 | The script failed to wait for the service to start running | The service could have taken more time to start or has encountered errors while trying to start. For more information on events and errors related to SENSE, see [Review events and errors on endpoints with Event viewer](event-error-codes-windows-defender-advanced-threat-protection.md). 35 | The script failed to find needed onboarding status registry value | When the SENSE service starts for the first time, it writes onboarding status to the registry location
    ```HKLM\SOFTWARE\Microsoft\Windows Advanced Threat Protection\Status```.
    The script failed to find it after several seconds. You can manually test it and check if it's there. For more information on events and errors related to SENSE, see [Review events and errors on endpoints with Event viewer](event-error-codes-windows-defender-advanced-threat-protection.md).