如何在Windows上获得像Core i7-860这样的CPU型号?

时间:2012-05-15 06:33:01

标签: windows cpu

i7 CPU型号有很多种,如下所示:

  

http://en.wikipedia.org/wiki/List_of_Intel_Core_i7_microprocessors#Desktop_processors

如何知道我在Windows上使用的是哪个版本?

7 个答案:

答案 0 :(得分:13)

通过

打开“系统信息”
Start Menu > Accessories > System Tools > System Information

然后在“系统信息”中打开一次:

System Information > System Summary

右侧是“处理器”,这将为您提供CPU的完整描述。

答案 1 :(得分:7)

您可以查看Win32_Processor WMI类的Name属性

试试这个C#样本

using System;
using System.Collections.Generic;
using System.Management;
using System.Text;

namespace GetWMI_Info
{
    class Program
    {


        static void Main(string[] args)
        {
            try
            {
                string ComputerName = "localhost";
                ManagementScope Scope;                
                Scope = new ManagementScope(String.Format("\\\\{0}\\root\\CIMV2", ComputerName), null);
                Scope.Connect();
                ObjectQuery Query = new ObjectQuery("SELECT Name FROM Win32_Processor");
                ManagementObjectSearcher Searcher = new ManagementObjectSearcher(Scope, Query);
                foreach (ManagementObject WmiObject in Searcher.Get())
                {
                    Console.WriteLine("{0}",WmiObject["Name"]);                     
                }
            }
            catch (Exception e)
            {
                Console.WriteLine(String.Format("Exception {0} Trace {1}",e.Message,e.StackTrace));
            }
            Console.WriteLine("Press Enter to exit");
            Console.Read();
        }
    }
}

答案 2 :(得分:7)

Windows密钥 + R 将打开运行命令

键入CMD并按

输入wmic CPU get NAME输入

对我而言,它给出了:

 Intel(R) Core(TM) i7 CPU  **920**  @ 2.67GHz

920是我认为你在寻找的...... 如果不是,如果您只需键入wmic CPU并按输入,它将以难以阅读的方式为您提供有关处理器的所有信息...
但是你可以输入wmic CPU get (whatever entry interests you)来获得那个 祝你好运

答案 3 :(得分:6)

CPU-Z (freeware)可以为您提供此信息。

答案 4 :(得分:3)

最简单的方法就是打开“开始” - > “电脑” - > “系统属性”

答案 5 :(得分:2)

打开Windows PowerShell,输入以下内容:

 > gwmi -query "SELECT Name FROM Win32_Processor"

Name       : Intel (R) Cor.....i7-2670QM CPU @2.20GHz

答案 6 :(得分:1)

在外壳上使用“ wmic”工具:

>wmic cpu get name
Name
Intel(R) Core(TM) i7-6820HQ CPU @ 2.70GHz

请注意:在相对罕见的情况下,您可能会看到对该值的访问限制。