Merged PR 2196: Merge maricia-12720884 to master

This commit is contained in:
Maricia Alforque 2017-07-12 22:07:03 +00:00
parent 2208219f7e
commit 9f3215d919
2 changed files with 70 additions and 12 deletions

View File

@ -7,7 +7,7 @@ ms.topic: article
ms.prod: w10 ms.prod: w10
ms.technology: windows ms.technology: windows
author: nickbrower author: nickbrower
ms.date: 06/19/2017 ms.date: 07/12/2017
--- ---
# EnterpriseAssignedAccess CSP # EnterpriseAssignedAccess CSP
@ -26,7 +26,7 @@ The following diagram shows the EnterpriseAssignedAccess configuration service p
The following list shows the characteristics and parameters. The following list shows the characteristics and parameters.
<a href="" id="-vendor-msft-enterpriseassignedaccess-"></a>**.Vendor/MSFT/EnterpriseAssignedAccess/** <a href="" id="-vendor-msft-enterpriseassignedaccess-"></a>**./Vendor/MSFT/EnterpriseAssignedAccess/**
The root node for the EnterpriseAssignedAccess configuration service provider. Supported operations are Add, Delete, Get and Replace. The root node for the EnterpriseAssignedAccess configuration service provider. Supported operations are Add, Delete, Get and Replace.
<a href="" id="assignedaccess-"></a>**AssignedAccess/** <a href="" id="assignedaccess-"></a>**AssignedAccess/**
@ -39,10 +39,10 @@ Supported operations are Add, Delete, Get and Replace.
The Apps and Settings sections of lockdown XML constitute an Allow list. Any app or setting that is not specified in AssignedAccessXML will not be available on the device to users. The following table describes the entries in lockdown XML. The Apps and Settings sections of lockdown XML constitute an Allow list. Any app or setting that is not specified in AssignedAccessXML will not be available on the device to users. The following table describes the entries in lockdown XML.
> **Important**   > [!Important]   
When using the AssignedAccessXml in the EnterpriseAssignedAccess CSP through an MDM, the XML must use escaped characters, such as &lt; instead of &lt; because it is embedded in an XML. The examples provided in the topic are formatted for readability. > When using the AssignedAccessXml in the EnterpriseAssignedAccess CSP through an MDM, the XML must use escaped characters, such as \&lt; instead of &lt; because it is embedded in an XML. The examples provided in the topic are formatted for readability.
When using the AssignedAccessXml in a provisioning package using the Windows Imaging and Configuration Designer (ICD) tool, do not use escaped characters. When using the AssignedAccessXml in a provisioning package using the Windows Configuration Designer tool, do not use escaped characters.
Entry | Description Entry | Description
----------- | ------------ ----------- | ------------
@ -136,10 +136,7 @@ An application that belongs in the folder would add an optional attribute **Pare
Entry | Description Entry | Description
----------- | ------------ ----------- | ------------
Settings | Starting in Windows 10, version 1511, you can specify the following settings pages in the lockdown XML file. Settings | Starting in Windows 10, version 1511, you can specify the following settings pages in the lockdown XML file. For Windows 10, version 1703, see the instructions below for the new way to specify the settings pages.
> [!Important]
> Do not specify a group entry without a page entry because it will cause an undefined behavior.
<ul> <ul>
<li>System (main menu) - SettingsPageGroupPCSystem <li>System (main menu) - SettingsPageGroupPCSystem
@ -245,12 +242,32 @@ Settings | Starting in Windows 10, version 1511, you can specify the following
</ul></li> </ul></li>
</ul> </ul>
Entry | Description
----------- | ------------
Settings | Starting in Windows 10, version 1703, you can specify the settings pages using the settings URI.
For example, in place of SettingPageDisplay, you would use ms-settings:display. See [ms-settings: URI scheme reference](https://docs.microsoft.com/en-us/windows/uwp/launch-resume/launch-settings-app#ms-settings-uri-scheme-reference) to find the URI for each settings page.
Here is an example for Windows 10, version 1703.
``` syntax
<Settings>
<System name="ms-settings:display"/>
<System name="ms-settings:appsforwebsites"/>
<System name="ms-settings:about"/>
<System name="ms-settings:camera"/>
<System name="ms-settings:nfctransactions"/>
<System name="ms-settings:mousetouchpad"/>
<System name="ms-settings:usb"/>
</Settings>
```
**Quick action settings** **Quick action settings**
Starting in Windows 10, version 1511, you can specify the following quick action settings in the lockdown XML file. The following list shows the quick action settings and settings page dependencies (group and page). Starting in Windows 10, version 1511, you can specify the following quick action settings in the lockdown XML file. The following list shows the quick action settings and settings page dependencies (group and page).
> [!Note] > [!Note]
> Only Windows 10, versions 1511 and 1607, the dependent settings group and pages are automatically added when the quick action item is specified in the lockdown XML. This statement does not apply to Windows 10, version 1703. > Only Windows 10, versions 1511 and 1607, the dependent settings group and pages are automatically added when the quick action item is specified in the lockdown XML. In Windows 10, version 1703, Quick action settings no longer require any dependencies from related group or page.
<ul> <ul>
<li><p>SystemSettings_System_Display_QuickAction_Brightness</p> <li><p>SystemSettings_System_Display_QuickAction_Brightness</p>
@ -287,6 +304,25 @@ Starting in Windows 10, version 1511, you can specify the following quick acti
<p>Dependencies - none</p></li> <p>Dependencies - none</p></li>
</ul> </ul>
Starting in Windows 10, version 1703, Quick action settings no longer require any dependencis from related group or page. Here is the list:
- QuickActions_Launcher_AllSettings
- QuickActions_Launcher_DeviceDiscovery
- SystemSettings_BatterySaver_LandingPage_OverrideControl
- SystemSettings_Device_BluetoothQuickAction
- SystemSettings_Flashlight_Toggle
- SystemSettings_Launcher_QuickNote
- SystemSettings_Network_VPN_QuickAction
- SystemSettings_Privacy_LocationEnabledUserPhone
- SystemSettings_QuickAction_AirplaneMode
- SystemSettings_QuickAction_Camera
- SystemSettings_QuickAction_CellularData
- SystemSettings_QuickAction_InternetSharing
- SystemSettings_QuickAction_QuietHours
- SystemSettings_QuickAction_WiFi
- SystemSettings_System_Display_Internal_Rotation
- SystemSettings_System_Display_QuickAction_Brightness
In this example, all settings pages and quick action settings are allowed. An empty \<Settings> node indicates that none of the settings are blocked. In this example, all settings pages and quick action settings are allowed. An empty \<Settings> node indicates that none of the settings are blocked.
``` syntax ``` syntax
@ -294,7 +330,7 @@ In this example, all settings pages and quick action settings are allowed. An em
</Settings> </Settings>
``` ```
In this example, all System setting pages are enabled. Note that the System page group is added as well as all of the System subpage names. In this example for Windows 10, version 1511, all System setting pages are enabled. Note that the System page group is added as well as all of the System subpage names.
``` syntax ``` syntax
<Settings> <Settings>
@ -310,6 +346,19 @@ In this example, all System setting pages are enabled. Note that the System page
<System name="SettingsPagePCSystemInfo" /> <System name="SettingsPagePCSystemInfo" />
</Settings> </Settings>
``` ```
Here is an example for Windows 10, version 1703.
``` syntax
<Settings>
<System name="ms-settings:display"/>
<System name="ms-settings:appsforwebsites"/>
<System name="ms-settings:about"/>
<System name="ms-settings:camera"/>
<System name="ms-settings:nfctransactions"/>
<System name="ms-settings:mousetouchpad"/>
<System name="ms-settings:usb"/>
</Settings>
```
Entry | Description Entry | Description
----------- | ------------ ----------- | ------------

View File

@ -10,7 +10,7 @@ ms.topic: article
ms.prod: w10 ms.prod: w10
ms.technology: windows ms.technology: windows
author: nickbrower author: nickbrower
ms.date: 07/11/2017 ms.date: 07/12/2017
--- ---
# What's new in MDM enrollment and management # What's new in MDM enrollment and management
@ -1306,12 +1306,21 @@ The DM agent for [push-button reset](https://msdn.microsoft.com/windows/hardware
<li>WindowsDefenderSecurityCenter/URL</li> <li>WindowsDefenderSecurityCenter/URL</li>
</ul> </ul>
</td></tr> </td></tr>
<tr class="odd">
<td style="vertical-align:top">[EnterpriseDesktopAppManagement CSP](enterprisedesktopappmanagement-csp.md)</td> <td style="vertical-align:top">[EnterpriseDesktopAppManagement CSP](enterprisedesktopappmanagement-csp.md)</td>
<td style="vertical-align:top">Added the following statement to [MSI/ProductID/DownloadInstall](enterprisedesktopappmanagement-csp.md#msi-productid-downloadinstall): <td style="vertical-align:top">Added the following statement to [MSI/ProductID/DownloadInstall](enterprisedesktopappmanagement-csp.md#msi-productid-downloadinstall):
<ul> <ul>
<li>In Windows 10, version 1703 service release, a new tag "DownloadFromAad" was added to the "Enforcement" section of the XML. The default value is 0 (do not send token). This tag is optional and needs to be set to 1 in case the server wants the download URL to get the AADUserToken.</li> <li>In Windows 10, version 1703 service release, a new tag "DownloadFromAad" was added to the "Enforcement" section of the XML. The default value is 0 (do not send token). This tag is optional and needs to be set to 1 in case the server wants the download URL to get the AADUserToken.</li>
</ul> </ul>
</td></tr> </td></tr>
<tr class="even">
<td style="vertical-align:top">[EnterpriseAssignedAccess CSP](enterpriseassignedaccess-csp.md)</td>
<td style="vertical-align:top">Added the following information about the settings pages in AssigneAccessXML:
<ul>
<li>Starting in Windows 10, version 1703, you can specify the settings pages using the settings URI. For example, in place of SettingPageDisplay, you would use ms-settings:display. See [ms-settings: URI scheme reference](https://docs.microsoft.com/en-us/windows/uwp/launch-resume/launch-settings-app#ms-settings-uri-scheme-reference) to find the URI for each settings page.</li>
<li>In Windows 10, version 1703, Quick action settings no longer require any dependencies from related group or page.</li>
</ul>
</td></tr>
</tbody> </tbody>
</table> </table>