Skip to content

Commit 4720e3b

Browse files
authored
Update groups-dynamic-membership.md
Added Organizational Unit, which does appear in the AAD dynamic membership rules as a property. Also added devicePhysicalIds based on details at https://docs.microsoft.com/en-us/intune/enrollment/enrollment-autopilot#create-an-autopilot-device-group
1 parent dcd325c commit 4720e3b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,8 +376,10 @@ The following device attributes can be used.
376376
enrollmentProfileName | Apple Device Enrollment Profile, Device enrollment - Corporate device identifiers (Android - Kiosk), or Windows Autopilot profile name | (device.enrollmentProfileName -eq "DEP iPhones")
377377
isRooted | true false | (device.isRooted -eq true)
378378
managementType | MDM (for mobile devices)<br>PC (for computers managed by the Intune PC agent) | (device.managementType -eq "MDM")
379+
organizationalUnit | a valid on-premises organizational unit (OU) | (device.organizationalUnit -contains "laptop")
379380
deviceId | a valid Azure AD device ID | (device.deviceId -eq "d4fe7726-5966-431c-b3b8-cddc8fdb717d")
380381
objectId | a valid Azure AD object ID | (device.objectId -eq 76ad43c9-32c5-45e8-a272-7b58b58f596d")
382+
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")
381383
systemLabels | any string matching the Intune device property for tagging Modern Workplace devices | (device.systemLabels -contains "M365Managed")
382384

383385
> [!Note]

0 commit comments

Comments
 (0)