【发布时间】:2012-05-15 06:33:00
【问题描述】:
i7 CPU型号有多种如下:
http://en.wikipedia.org/wiki/List_of_Intel_Core_i7_microprocessors#Desktop_processors
如何知道我在 Windows 上使用的是哪个版本?
【问题讨论】:
i7 CPU型号有多种如下:
http://en.wikipedia.org/wiki/List_of_Intel_Core_i7_microprocessors#Desktop_processors
如何知道我在 Windows 上使用的是哪个版本?
【问题讨论】:
通过
打开“系统信息”Start Menu > Accessories > System Tools > System Information
然后在“系统信息”中打开一次:
System Information > System Summary
右侧将是“处理器”,它将为您提供 CPU 的完整描述。
【讨论】:
Windows Key + 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) 来获取那个。
祝你好运
【讨论】:
您可以查看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();
}
}
}
【讨论】:
CPU-Z (freeware)可以给你这个信息。
【讨论】:
最简单的方法就是打开“开始”->“计算机”->“系统属性”
【讨论】:
打开 Windows PowerShell,输入以下内容:
> gwmi -query "SELECT Name FROM Win32_Processor"
Name : Intel (R) Cor.....i7-2670QM CPU @2.20GHz
【讨论】:
使用 shell 上的“wmic”工具:
>wmic cpu get name
Name
Intel(R) Core(TM) i7-6820HQ CPU @ 2.70GHz
请注意:在一些相对罕见的情况下,您可能会看到对这些值的访问限制。
【讨论】: