Create a dynamic group rule to get only laptops only in Endpoint Manager

Question

Can anyone help with a dynamic group based rule  to get laptops only in Endpoint Manager? Client has asked for piece of software but only wants on laptops. I did think maybe it could be based on having a wifi adpterg a wifi adpater present, but also unsure how to generate this rule. Any help would be appriecated. Thank you.

Answers ( 2 )

    0
    2021-09-14T12:46:18+05:30

    here is the query:

    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SYSTEM_ENCLOSURE on SMS_G_System_SYSTEM_ENCLOSURE.ResourceID = SMS_R_System.ResourceId where SMS_G_System_SYSTEM_ENCLOSURE.ChassisTypes in (“8″,”9″,”10″,”11″,”12″,”14″,”18″,”21″,”30″,”31″,”32”)

    for a deeper view on the different chassis types check this
    https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/win32-systemenclosure

    Best answer
  1. Hello, You can check more details for Dynamic Groups here – https://www.anoopcnair.com/create-azure-ad-dynamic-groups-managing-devices-via-intune/

    Go to Devices > Windows Section check the column name accordingly you can create your own custom query

    For Example – (device.deviceModel -startsWith “Surface Pro X”) -or (device.deviceModel -startsWith “Latitude”)

Leave an answer

Sorry, you do not have permission to answer to this question .