Skip to content

Commit 8e14289

Browse files
authored
Merge pull request #200399 from curtand/dahl0603
[Azure AD groups] memberOf added to tables
2 parents 08cd031 + fbfeb1e commit 8e14289

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

articles/active-directory/enterprise-users/groups-dynamic-membership.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: active-directory
99
ms.subservice: enterprise-users
1010
ms.workload: identity
1111
ms.topic: overview
12-
ms.date: 06/02/2022
12+
ms.date: 06/03/2022
1313
ms.author: curtand
1414
ms.reviewer: krbain
1515
ms.custom: it-pro
@@ -81,10 +81,10 @@ The following are the user properties that you can use to create a single expres
8181

8282
### Properties of type boolean
8383

84-
| Properties | Allowed values | Usage |
85-
| --- | --- | --- |
86-
| accountEnabled |true false |user.accountEnabled -eq true |
87-
| dirSyncEnabled |true false |user.dirSyncEnabled -eq true |
84+
Properties | Allowed values | Usage
85+
--- | --- | ---
86+
accountEnabled |true false |user.accountEnabled -eq true
87+
dirSyncEnabled |true false |user.dirSyncEnabled -eq true
8888

8989
### Properties of type string
9090

@@ -101,6 +101,7 @@ The following are the user properties that you can use to create a single expres
101101
| jobTitle |Any string value or *null* |(user.jobTitle -eq "value") |
102102
| mail |Any string value or *null* (SMTP address of the user) |(user.mail -eq "value") |
103103
| mailNickName |Any string value (mail alias of the user) |(user.mailNickName -eq "value") |
104+
| memberOf | Any string value (valid group object ID) | (device.memberof -any (group.objectId -in ['value'])) |
104105
| mobile |Any string value or *null* |(user.mobile -eq "value") |
105106
| objectId |GUID of the user object |(user.objectId -eq "11111111-1111-1111-1111-111111111111") |
106107
| onPremisesDistinguishedName (preview)| Any string value or *null* |(user.onPremisesDistinguishedName -eq "value") |
@@ -393,12 +394,13 @@ The following device attributes can be used.
393394
enrollmentProfileName | Apple Device Enrollment Profile name, Android Enterprise Corporate-owned dedicated device Enrollment Profile name, or Windows Autopilot profile name | (device.enrollmentProfileName -eq "DEP iPhones")
394395
isRooted | true false | (device.isRooted -eq true)
395396
managementType | MDM (for mobile devices) | (device.managementType -eq "MDM")
397+
memberOf | Any string value (valid group object ID) | (user.memberof -any (group.objectId -in ['value']))
396398
deviceId | a valid Azure AD device ID | (device.deviceId -eq "d4fe7726-5966-431c-b3b8-cddc8fdb717d")
397399
objectId | a valid Azure AD object ID | (device.objectId -eq "76ad43c9-32c5-45e8-a272-7b58b58f596d")
398400
devicePhysicalIds | any string value used by Autopilot, such as all Autopilot devices, OrderID, or PurchaseOrderID | (device.devicePhysicalIDs -any _ -contains "[ZTDId]") (device.devicePhysicalIds -any _ -eq "[OrderID]:179887111881") (device.devicePhysicalIds -any _ -eq "[PurchaseOrderId]:76222342342")
399401
systemLabels | any string matching the Intune device property for tagging Modern Workplace devices | (device.systemLabels -contains "M365Managed")
400402

401-
> [!Note]
403+
> [!NOTE]
402404
> For the deviceOwnership when creating Dynamic Groups for devices you need to set the value equal to "Company". On Intune the device ownership is represented instead as Corporate. Refer to [OwnerTypes](/intune/reports-ref-devices#ownertypes) for more details.
403405
404406
## Next steps

0 commit comments

Comments
 (0)