Find PCs having specific Model

create share 661 Reputation points
2021-06-13T20:37:36.7+00:00

Hi,

I need to find all the pcs having core i3 processor through SCCM. Can someone guide me?

Thanks.

Microsoft Configuration Manager
0 comments No comments
{count} votes

4 answers

Sort by: Most helpful
  1. Garth 5,801 Reputation points
    2021-06-14T02:31:58.627+00:00

    What do you have for a query now and what isn't working for you?

    0 comments No comments

  2. HanyunZhu-MSFT 1,846 Reputation points Microsoft Vendor
    2021-06-14T03:23:08.707+00:00

    Hi @create share ,

    Please try the following in SQL Server Management Studio to see if it is help,

    1. Right-click the server instance in Object Explorer, and then select New Query
    2. Enter the following query language into the query window SELECT
      DISTINCT(CPU.SystemName0) AS [System Name],
      CPU.Manufacturer0 AS Manufacturer,
      CPU.Name0 AS Name,
      COUNT(CPU.ResourceID) AS [Number of CPUs],
      CPU.NumberOfCores0 AS [Number of Cores per CPU],
      CPU.NumberOfLogicalProcessors0 AS [Logical CPU Count]
      FROM [dbo].[v_GS_PROCESSOR] CPU
      GROUP BY
      CPU.SystemName0,
      CPU.Manufacturer0,
      CPU.Name0,
      CPU.NumberOfCores0,
      CPU.NumberOfLogicalProcessors0
      having CPU.Name0 like 'Intel(R) Core(TM) i%'
      and convert(INT,SUBSTRING(CPU.Name0,len('Intel(R) Core(TM) i')+3,1))=3

    3) Click "Execute" and check the result


    If the response is helpful, please click "Accept Answer"and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


  3. create share 661 Reputation points
    2021-06-19T14:35:55.943+00:00

    It did not work. I need to use Microsoft Endpoint Configuration Manager to get the list. I will ty the built-in hardware report in it after fixing the password problem of SQL.


  4. create share 661 Reputation points
    2021-07-06T10:04:28.613+00:00

    I found a report in SCCM but it is not working due to some authentication problem because the password for sccm server was changed.

    Thanks.


Your answer

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