Added final review comments

This commit is contained in:
ManikaDhiman 2020-10-14 12:06:02 -07:00
parent 491e505d46
commit 430c7f3203

View File

@ -7,7 +7,7 @@ ms.prod: w10
ms.technology: windows ms.technology: windows
author: manikadhiman author: manikadhiman
ms.localizationpriority: medium ms.localizationpriority: medium
ms.date: 10/08/2020 ms.date: 10/14/2020
ms.reviewer: ms.reviewer:
manager: dansimp manager: dansimp
--- ---
@ -123,7 +123,7 @@ See [Use custom settings for Windows 10 devices in Intune](https://docs.microsof
Example: Update action for adding and removing group members. Example: Update action for adding and removing group members.
The following example shows how you can update a local group (**Backup Operators**), add a domain group as a member using its name (**Contoso\ITAdmins**), add the built-in Administrators group using its [well known SID](https://docs.microsoft.com/windows/win32/secauthz/well-known-sids), add a AAD group by its SID (**S-1-5-32-678909-99338456-74654332**), and remove a local account (**Guest**). The following example shows how you can update a local group (**Backup Operators**)add a domain group as a member using its name (**Contoso\ITAdmins**), add the built-in Administrators group using its [well known SID](https://docs.microsoft.com/windows/win32/secauthz/well-known-sids), add a AAD group by its SID (**S-1-12-1-111111111-22222222222-3333333333-4444444444**), and remove a local account (**Guest**).
```xml ```xml
<GroupConfiguration> <GroupConfiguration>
@ -131,7 +131,7 @@ The following example shows how you can update a local group (**Backup Operators
<group action = "U" /> <group action = "U" />
<add member = "Contoso\ITAdmins"/> <add member = "Contoso\ITAdmins"/>
<add member = "S-1-5-32-544"/> <add member = "S-1-5-32-544"/>
<add member = "S-1-5-32-678909-99338456-74654332"/> <add member = "S-1-12-1-111111111-22222222222-3333333333-4444444444"/>
<remove member = "Guest"/> <remove member = "Guest"/>
</accessgroup> </accessgroup>
</GroupConfiguration> </GroupConfiguration>
@ -139,7 +139,7 @@ The following example shows how you can update a local group (**Backup Operators
Example: Restrict action for replacing the group membership. Example: Restrict action for replacing the group membership.
The following example shows how you can restrict a local group (**Backup Operators**), add the built-in Administrators group using its [well known SID](https://docs.microsoft.com/windows/win32/secauthz/well-known-sids), and add a local account (**Guest**). The following example shows how you can restrict a local group (**Backup Operators**)—replace its membership with the built-in Administrators group using its [well known SID](https://docs.microsoft.com/windows/win32/secauthz/well-known-sids) and add a local account (**Guest**).
```xml ```xml
<GroupConfiguration> <GroupConfiguration>