Merge branch 'master' of https://cpubwin.visualstudio.com/_git/it-client into FromPrivateRepo

This commit is contained in:
Alma Jenks 2018-03-22 15:52:10 -07:00
commit 7bf584ca80
5 changed files with 193 additions and 43 deletions

View File

@ -6,7 +6,7 @@ ms.topic: article
ms.prod: w10 ms.prod: w10
ms.technology: windows ms.technology: windows
author: nickbrower author: nickbrower
ms.date: 02/27/2018 ms.date: 03/22/2018
--- ---
# MultiSIM CSP # MultiSIM CSP
@ -30,9 +30,13 @@ Node representing a Mobile Broadband Modem. The node name is the modem ID. Modem
<a href="" id="modemid"></a>**_ModemID_/Identifier** <a href="" id="modemid"></a>**_ModemID_/Identifier**
Modem ID. Modem ID.
Supported operation is Get. Value type is string.
<a href="" id="tbd"></a>**_ModemID_/IsEmbedded** <a href="" id="tbd"></a>**_ModemID_/IsEmbedded**
Indicates whether this modem is embedded or external. Indicates whether this modem is embedded or external.
Supported operation is Get. Value type is bool.
<a href="" id="tbd"></a>**_ModemID_/Slots** <a href="" id="tbd"></a>**_ModemID_/Slots**
Represents all SIM slots in the Modem. Represents all SIM slots in the Modem.
@ -42,17 +46,110 @@ Node representing a SIM Slot. The node name is the Slot ID. SIM Slot ID format i
<a href="" id="tbd"></a>**_ModemID_/Slots/_SlotID_/Identifier** <a href="" id="tbd"></a>**_ModemID_/Slots/_SlotID_/Identifier**
Slot ID. Slot ID.
Supported operation is Get. Value type is integer.
<a href="" id="tbd"></a>**_ModemID_/Slots/_SlotID_/IsEmbedded** <a href="" id="tbd"></a>**_ModemID_/Slots/_SlotID_/IsEmbedded**
Indicates whether this Slot is embedded or a physical SIM slot. Indicates whether this Slot is embedded or a physical SIM slot.
Supported operation is Get. Value type is bool.
<a href="" id="tbd"></a>**_ModemID_/Slots/_SlotID_/IsSelected** <a href="" id="tbd"></a>**_ModemID_/Slots/_SlotID_/IsSelected**
Indicates whether this Slot is selected or not. Indicates whether this Slot is selected or not.
Supported operation is Get and Replace. Value type is bool.
<a href="" id="tbd"></a>**_ModemID_/Slots/_SlotID_/State** <a href="" id="tbd"></a>**_ModemID_/Slots/_SlotID_/State**
Slot state (Unknown = 0, OffEmpty = 1, Off = 2, Empty = 3, NotReady = 4, Active = 5, Error = 6, ActiveEsim = 7, ActiveEsimNoProfile = 8) Slot state (Unknown = 0, OffEmpty = 1, Off = 2, Empty = 3, NotReady = 4, Active = 5, Error = 6, ActiveEsim = 7, ActiveEsimNoProfile = 8)
Supported operation is Get. Value type is integer.
<a href="" id="tbd"></a>**_ModemID_/Policies** <a href="" id="tbd"></a>**_ModemID_/Policies**
Policies associated with the Modem. Policies associated with the Modem.
<a href="" id="tbd"></a>**_ModemID_/Policies/SlotSelectionEnabled** <a href="" id="tbd"></a>**_ModemID_/Policies/SlotSelectionEnabled**
Determines whether the user is allowed to change slots in the Cellular settings UI. Default is true. Determines whether the user is allowed to change slots in the Cellular settings UI. Default is true.
Supported operation is Get and Replace. Value type is bool.
## Examples
Get modem
``` syntax
<SyncML xmlns="SYNCML:SYNCML1.2">
<SyncBody>
<Get>
<CmdID>1</CmdID>
<Item>
<Target>
<LocURI>
./Vendor/MSFT/MultiSIM
</LocURI>
</Target>
</Item>
</Get>
<Final/>
</SyncBody>
</SyncML>
```
Get slots
``` syntax
<SyncML xmlns="SYNCML:SYNCML1.2">
<SyncBody>
<Get>
<CmdID>1</CmdID>
<Item>
<Target>
<LocURI>
./Vendor/MSFT/MultiSIM/Embedded/Slots
</LocURI>
</Target>
</Item>
</Get>
<Final/>
</SyncBody>
</SyncML>
```
Get slot state
``` syntax
<SyncML xmlns="SYNCML:SYNCML1.2">
<SyncBody>
<Get>
<CmdID>1</CmdID>
<Item>
<Target>
<LocURI>
./Vendor/MSFT/MultiSIM/Embedded/Slots/Embedded/State
</LocURI>
</Target>
</Item>
</Get>
<Final/>
</SyncBody>
</SyncML>
```
Select slot
``` syntax
<SyncML xmlns="SYNCML:SYNCML1.2">
<SyncBody>
<Replace>
<CmdID>1</CmdID>
<Item>
<Target>
<LocURI>
./Vendor/MSFT/MultiSIM/Embedded/Slots/0/IsSelected
</LocURI>
</Target>
<Meta>
<Format xmlns="syncml:metinf">bool</Format>
<Type>text/plain</Type>
</Meta>
<Data>true</Data>
</Item>
</Replace>
<Final/>
</SyncBody>
</SyncML>
```

View File

@ -1671,11 +1671,19 @@ The DM agent for [push-button reset](https://msdn.microsoft.com/windows/hardware
<li>InternetExplorer/AllowSiteToZoneAssignmentList - updated the description and added an example SyncML</li> <li>InternetExplorer/AllowSiteToZoneAssignmentList - updated the description and added an example SyncML</li>
<li>TextInput/AllowIMENetworkAccess - introduced new suggestion services in Japanese IME in addition to cloud suggestion.</li> <li>TextInput/AllowIMENetworkAccess - introduced new suggestion services in Japanese IME in addition to cloud suggestion.</li>
</ul> </ul>
<p>Added a new section:</p>
<ul>
<li>[Policies supported by GP](policy-configuration-service-provider.md#policies-supported-by-gp) - list of policies in Policy CSP that has corresponding Group Policy. The policy description contains the GP information, such as GP policy name and variable name.</li>
</ul>
</td></tr> </td></tr>
<tr> <tr>
<td style="vertical-align:top">[Policy CSP - Bluetooth](policy-csp-bluetooth.md)</td> <td style="vertical-align:top">[Policy CSP - Bluetooth](policy-csp-bluetooth.md)</td>
<td style="vertical-align:top"><p>Added new section [ServicesAllowedList usage guide](policy-csp-bluetooth.md#servicesallowedlist-usage-guide).</p> <td style="vertical-align:top"><p>Added new section [ServicesAllowedList usage guide](policy-csp-bluetooth.md#servicesallowedlist-usage-guide).</p>
</td></tr> </td></tr>
<tr>
<td style="vertical-align:top">[MultiSIM CSP](multisim-csp.md)</td>
<td style="vertical-align:top"><p>Added SyncML examples and updated the settings descriptions.</p>
</td></tr>
</tbody> </tbody>
</table> </table>

View File

@ -4462,6 +4462,42 @@ The following diagram shows the Policy configuration service provider in tree fo
- [WirelessDisplay/AllowProjectionToPC](./policy-csp-wirelessdisplay.md#wirelessdisplay-allowprojectiontopc) - [WirelessDisplay/AllowProjectionToPC](./policy-csp-wirelessdisplay.md#wirelessdisplay-allowprojectiontopc)
- [WirelessDisplay/RequirePinForPairing](./policy-csp-wirelessdisplay.md#wirelessdisplay-requirepinforpairing) - [WirelessDisplay/RequirePinForPairing](./policy-csp-wirelessdisplay.md#wirelessdisplay-requirepinforpairing)
<!--StartHoloLens-->
## <a href="" id="hololenspolicies"></a>Policies supported by Windows Holographic for Business
- [Accounts/AllowMicrosoftAccountConnection](#accounts-allowmicrosoftaccountconnection)
- [ApplicationManagement/AllowAllTrustedApps](#applicationmanagement-allowalltrustedapps)
- [ApplicationManagement/AllowAppStoreAutoUpdate](#applicationmanagement-allowappstoreautoupdate)
- [ApplicationManagement/AllowDeveloperUnlock](#applicationmanagement-allowdeveloperunlock)
- [Authentication/AllowFastReconnect](#authentication-allowfastreconnect)
- [Bluetooth/AllowAdvertising](#bluetooth-allowadvertising)
- [Bluetooth/AllowDiscoverableMode](#bluetooth-allowdiscoverablemode)
- [Bluetooth/LocalDeviceName](#bluetooth-localdevicename)
- [Browser/AllowCookies](#browser-allowcookies)
- [Browser/AllowDoNotTrack](#browser-allowdonottrack)
- [Browser/AllowPasswordManager](#browser-allowpasswordmanager)
- [Browser/AllowPopups](#browser-allowpopups)
- [Browser/AllowSearchSuggestionsinAddressBar](#browser-allowsearchsuggestionsinaddressbar)
- [Browser/AllowSmartScreen](#browser-allowsmartscreen)
- [Connectivity/AllowBluetooth](#connectivity-allowbluetooth)
- [DeviceLock/AllowIdleReturnWithoutPassword](#devicelock-allowidlereturnwithoutpassword)
- [DeviceLock/DevicePasswordEnabled](#devicelock-devicepasswordenabled)
- [Experience/AllowCortana](#experience-allowcortana)
- [Experience/AllowManualMDMUnenrollment](#experience-allowmanualmdmunenrollment)
- [Privacy/AllowInputPersonalization](#privacy-allowinputpersonalization)
- [Search/AllowSearchToUseLocation](#search-allowsearchtouselocation)
- [Security/RequireDeviceEncryption](#security-requiredeviceencryption)
- [Settings/AllowDateTime](#settings-allowdatetime)
- [Settings/AllowVPN](#settings-allowvpn)
- [System/AllowLocation](#system-allowlocation)
- [System/AllowTelemetry](#system-allowtelemetry)
- [Update/AllowAutoUpdate](#update-allowautoupdate)
- [Update/AllowUpdateService](#update-allowupdateservice)
- [Update/RequireDeferUpgrade](#update-requiredeferupgrade)
- [Update/RequireUpdateApproval](#update-requireupdateapproval)
- [Update/UpdateServiceUrl](#update-updateserviceurl)
<!--EndHoloLens-->
<!--StartEAS--> <!--StartEAS-->
## <a href="" id="eas"></a>Policies that can be set using Exchange Active Sync (EAS) ## <a href="" id="eas"></a>Policies that can be set using Exchange Active Sync (EAS)

View File

@ -4493,14 +4493,6 @@ Footnote:
## <a href="" id="hololenspolicies"></a>Privacy policies supported by Windows Holographic for Business ## <a href="" id="hololenspolicies"></a>Privacy policies supported by Windows Holographic for Business
- [Privacy/AllowInputPersonalization](#privacy-allowinputpersonalization) - [Privacy/AllowInputPersonalization](#privacy-allowinputpersonalization)
- [Privacy/LetAppsGetDiagnosticInfo](#privacy-letappsgetdiagnosticinfo)
- [Privacy/LetAppsGetDiagnosticInfo_ForceAllowTheseApps](#privacy-letappsgetdiagnosticinfo-forceallowtheseapps)
- [Privacy/LetAppsGetDiagnosticInfo_ForceDenyTheseApps](#privacy-letappsgetdiagnosticinfo-forcedenytheseapps)
- [Privacy/LetAppsGetDiagnosticInfo_UserInControlOfTheseApps](#privacy-letappsgetdiagnosticinfo-userincontroloftheseapps)
- [Privacy/LetAppsRunInBackground](#privacy-letappsruninbackground)
- [Privacy/LetAppsRunInBackground_ForceAllowTheseApps](#privacy-letappsruninbackground-forceallowtheseapps)
- [Privacy/LetAppsRunInBackground_ForceDenyTheseApps](#privacy-letappsruninbackground-forcedenytheseapps)
- [Privacy/LetAppsRunInBackground_UserInControlOfTheseApps](#privacy-letappsruninbackground-userincontroloftheseapps)
<!--EndHoloLens--> <!--EndHoloLens-->
<!--StartIoTCore--> <!--StartIoTCore-->

View File

@ -313,217 +313,217 @@ The following tables provide descriptions of the default groups that are located
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[Enterprise Key Admins](#bkmk-enterprise-key-admins)</p></td> <td><p>[Enterprise Key Admins](#bkmk-enterprise-key-admins)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p></p></td> <td><p></p></td>
<td><p></p></td> <td><p></p></td>
<td><p></p></td> <td><p></p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[Enterprise Read-only Domain Controllers](#bkmk-entrodc)</p></td> <td><p>[Enterprise Read-only Domain Controllers](#bkmk-entrodc)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[Event Log Readers](#bkmk-eventlogreaders)</p></td> <td><p>[Event Log Readers](#bkmk-eventlogreaders)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[Group Policy Creator Owners](#bkmk-gpcreatorsowners)</p></td> <td><p>[Group Policy Creator Owners](#bkmk-gpcreatorsowners)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[Guests](#bkmk-guests)</p></td> <td><p>[Guests](#bkmk-guests)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[Hyper-V Administrators](#bkmk-hypervadministrators)</p></td> <td><p>[Hyper-V Administrators](#bkmk-hypervadministrators)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p></p></td> <td><p></p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[IIS_IUSRS](#bkmk-iis-iusrs)</p></td> <td><p>[IIS_IUSRS](#bkmk-iis-iusrs)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[Incoming Forest Trust Builders](#bkmk-inforesttrustbldrs)</p></td> <td><p>[Incoming Forest Trust Builders](#bkmk-inforesttrustbldrs)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[Key Admins](#key-admins)</p></td> <td><p>[Key Admins](#key-admins)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p></p></td> <td><p></p></td>
<td><p></p></td> <td><p></p></td>
<td><p></p></td> <td><p></p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[Network Configuration Operators](#bkmk-networkcfgoperators)</p></td> <td><p>[Network Configuration Operators](#bkmk-networkcfgoperators)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[Performance Log Users](#bkmk-perflogusers)</p></td> <td><p>[Performance Log Users](#bkmk-perflogusers)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[Performance Monitor Users](#bkmk-perfmonitorusers)</p></td> <td><p>[Performance Monitor Users](#bkmk-perfmonitorusers)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[PreWindows 2000 Compatible Access](#bkmk-pre-ws2kcompataccess)</p></td> <td><p>[PreWindows 2000 Compatible Access](#bkmk-pre-ws2kcompataccess)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[Print Operators](#bkmk-printoperators)</p></td> <td><p>[Print Operators](#bkmk-printoperators)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[Protected Users](#bkmk-protectedusers)</p></td> <td><p>[Protected Users](#bkmk-protectedusers)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p></p></td> <td><p></p></td>
<td><p></p></td> <td><p></p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[RAS and IAS Servers](#bkmk-rasandias)</p></td> <td><p>[RAS and IAS Servers](#bkmk-rasandias)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[RDS Endpoint Servers](#bkmk-rdsendpointservers)</p></td> <td><p>[RDS Endpoint Servers](#bkmk-rdsendpointservers)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p></p></td> <td><p></p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[RDS Management Servers](#bkmk-rdsmanagementservers)</p></td> <td><p>[RDS Management Servers](#bkmk-rdsmanagementservers)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p></p></td> <td><p></p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[RDS Remote Access Servers](#bkmk-rdsremoteaccessservers)</p></td> <td><p>[RDS Remote Access Servers](#bkmk-rdsremoteaccessservers)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p></p></td> <td><p></p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[Read-only Domain Controllers](#bkmk-rodc)</p></td> <td><p>[Read-only Domain Controllers](#bkmk-rodc)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[Remote Desktop Users](#bkmk-remotedesktopusers)</p></td> <td><p>[Remote Desktop Users](#bkmk-remotedesktopusers)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[Remote Management Users](#bkmk-remotemanagementusers)</p></td> <td><p>[Remote Management Users](#bkmk-remotemanagementusers)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p></p></td> <td><p></p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[Replicator](#bkmk-replicator)</p></td> <td><p>[Replicator](#bkmk-replicator)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[Schema Admins](#bkmk-schemaadmins)</p></td> <td><p>[Schema Admins](#bkmk-schemaadmins)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[Server Operators](#bkmk-serveroperators)</p></td> <td><p>[Server Operators](#bkmk-serveroperators)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[Storage Replica Administrators](#storage-replica-administrators)</p></td> <td><p>[Storage Replica Administrators](#storage-replica-administrators)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p></p></td> <td><p></p></td>
<td><p></p></td> <td><p></p></td>
<td><p></p></td> <td><p></p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[System Managed Accounts Group](#system-managed-accounts-group)</p></td> <td><p>[System Managed Accounts Group](#system-managed-accounts-group)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p></p></td> <td><p></p></td>
<td><p></p></td> <td><p></p></td>
<td><p></p></td> <td><p></p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[Terminal Server License Servers](#bkmk-terminalserverlic)</p></td> <td><p>[Terminal Server License Servers](#bkmk-terminalserverlic)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[Users](#bkmk-users)</p></td> <td><p>[Users](#bkmk-users)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="even"> <tr class="odd">
<td><p>[Windows Authorization Access Group](#bkmk-winauthaccess)</p></td> <td><p>[Windows Authorization Access Group](#bkmk-winauthaccess)</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
</tr> </tr>
<tr class="odd"> <tr class="even">
<td><p>[WinRMRemoteWMIUsers_](#bkmk-winrmremotewmiusers-)</p></td> <td><p>[WinRMRemoteWMIUsers_](#bkmk-winrmremotewmiusers-)</p></td>
<td><p></p></td> <td><p></p></td>
<td><p>Yes</p></td> <td><p>Yes</p></td>
@ -1763,8 +1763,25 @@ This security group has not changed since Windows Server 2008.
</tbody> </tbody>
</table> </table>
  ### Enterprise Key Admins
Members of this group can perform administrative actions on key objects within the forest.
The Enterprise Key Admins group was introduced in Windows Server 2016.
| Attribute | Value |
|-----------|-------|
| Well-Known SID/RID | S-1-5-21-&lt;domain&gt;-527 |
| Type | Global |
| Default container | CN=Users, DC=&lt;domain&gt;, DC= |
| Default members | None |
| Default member of | None |
| Protected by ADMINSDHOLDER? | No |
| Safe to move out of default container? | Yes |
| Safe to delegate management of this group to non-Service admins? | No |
| Default User Rights | None |
 
### <a href="" id="bkmk-entrodc"></a>Enterprise Read-Only Domain Controllers ### <a href="" id="bkmk-entrodc"></a>Enterprise Read-Only Domain Controllers
Members of this group are Read-Only Domain Controllers in the enterprise. Except for account passwords, a Read-only domain controller holds all the Active Directory objects and attributes that a writable domain controller holds. However, changes cannot be made to the database that is stored on the Read-only domain controller. Changes must be made on a writable domain controller and then replicated to the Read-only domain controller. Members of this group are Read-Only Domain Controllers in the enterprise. Except for account passwords, a Read-only domain controller holds all the Active Directory objects and attributes that a writable domain controller holds. However, changes cannot be made to the database that is stored on the Read-only domain controller. Changes must be made on a writable domain controller and then replicated to the Read-only domain controller.
@ -2233,7 +2250,7 @@ The Key Admins group applies to versions of the Windows Server operating system
| Attribute | Value | | Attribute | Value |
|-----------|-------| |-----------|-------|
| Well-Known SID/RID | S-1-5-21-4195037842-338827918-94892514-526 | | Well-Known SID/RID | S-1-5-21-&lt;domain&gt;-526 |
| Type | Global | | Type | Global |
| Default container | CN=Users, DC=&lt;domain&gt;, DC= | | Default container | CN=Users, DC=&lt;domain&gt;, DC= |
| Default members | None | | Default members | None |