Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get CPU's model number like Core i7-860 on Windows?

Tags:

windows

cpu

There are many kinds of i7 CPU models as follows:

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

How to know which version I am using on Windows?

like image 678
Johnny Lim Avatar asked May 15 '12 06:05

Johnny Lim


2 Answers

Windows Key + R will open the run command

Type CMD and press

Type wmic CPU get NAME and enter

For me it gives :

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

Where the 920 is what I think your looking for...
If its not, if you just type wmic CPU and press enter it will give you all the information about the processor in a hard to read fashion...
But then you can type wmic CPU get (whatever entry interests you) to get just that one.
Good Luck

like image 111
Chris Avatar answered Oct 15 '22 01:10

Chris


Use the 'wmic' tool on the shell:

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

Please note: In some relatively rare case you might see access restrictions to those value.

like image 42
Alexander Stohr Avatar answered Oct 15 '22 03:10

Alexander Stohr