Merge pull request #3232 from ManikaDhiman/MDBranch3267358

Md branch3267358
This commit is contained in:
Jeanie Decker
2019-04-10 12:07:05 -07:00
committed by GitHub

View File

@ -66,6 +66,15 @@ Here are examples of data fields. The encoded 0xF000 is the standard delimiter/s
``` ```
<Data></Data> <Data></Data>
``` ```
If you use Intune custom profiles to assign UserRights policies, you must use the CDATA tag (`<![CDATA[...]]>`) to wrap the data fields. You can specify one or more user groups within the CDATA tag by using 0xF000 as the delimiter/separator.
> [!Note]
> `&#xF000;` is the entity encoding of 0xF000.
For example, the following syntax grants user rights to Authenticated Users and Replicator user groups:
```
<![CDATA[Authenticated Users&#xF000;Replicator]]>
```
<hr/> <hr/>