9

i7 CPU型号有多种如下:

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

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

4

7 回答 7

13

通过以下方式打开“系统信息”

Start Menu > Accessories > System Tools > System Information

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

System Information > System Summary

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

于 2012-05-15T06:37:10.927 回答
9

Windows Key + R 将打开运行命令

键入CMD并按下

类型wmic CPU get NAME enter

对我来说,它给出了:

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

920 是我认为 您
正在寻找wmic CPU enter ...那个。 祝你好运
wmic CPU get (whatever entry interests you)

于 2016-11-04T17:02:01.440 回答
7

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

试试这个 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();
        }
    }
}
于 2012-05-15T06:43:34.330 回答
6

CPU-Z(免费软件)可以为您提供这些信息。

于 2012-05-15T06:34:10.017 回答
3

最简单的方法就是打开“开始”->“计算机”->“系统属性”

于 2012-05-15T06:37:16.537 回答
2

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

 > gwmi -query "SELECT Name FROM Win32_Processor"

Name       : Intel (R) Cor.....i7-2670QM CPU @2.20GHz
于 2015-08-25T16:35:55.677 回答
1

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

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

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

于 2020-03-10T18:47:35.487 回答