Need to identify list of machine where VPro enabled

TechUST 696 Reputation points
2026-01-15T22:03:53.49+00:00

Hi,

I want to identify Intel vPro enabled machines either from SCCM or Intune. I tried using SQL and WQL, but I wasn’t successful. Can you please suggest the best way to do this?

Microsoft Security | Intune | Reporting
0 comments No comments

2 answers

Sort by: Most helpful
  1. Rahul Jindal 11,721 Reputation points
    2026-01-15T22:54:53.2466667+00:00

    V_gs_amt_system normally holds that information. You may need to extend the HW inventory to include AMT classes.

    Was this answer helpful?


  2. AI answer

    2026-01-15T22:04:04.96+00:00

    To identify Intel vPro enabled machines using SCCM or Intune, you can utilize the properties catalog in Intune or create specific queries in SCCM.

    For Intune:

    You can use the properties catalog to collect hardware properties, including those related to Intel vPro. However, the specific property for vPro is not detailed in the provided context. You may need to check the Intune Data Platform Schema for any updates or specific properties related to vPro.

    For SCCM:

    You can create a WQL query to filter devices based on the vPro capability. While the exact WQL syntax for vPro is not provided in the context, you can start with queries that target specific hardware attributes. For example, you might look for devices with specific BIOS or CPU characteristics that indicate vPro support.

    Here’s a general example of how you might structure a WQL query:

    SELECT * FROM SMS_R_System WHERE <Your vPro Condition>
    

    Replace <Your vPro Condition> with the appropriate condition that identifies vPro-enabled devices.

    For more detailed queries, refer to the documentation on creating queries in Configuration Manager.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.