vote up 3 vote down star

How do I obtain the serial number of the CPU in a PC?

flag

75% accept rate
Are your CPU's Pentium III's? If not, is there a different question you are actually trying to ask? – Joe Hildebrand Sep 18 '08 at 6:29

8 Answers

vote up 3 vote down check

Based upon 'licensing' tag you have used for your question, you might get better results reading network MAC address. Identifying PC by a MAC address isn't totally unbreakable method for copy protection, still it is sometimes used.

link|flag
vote up 0 vote down

In windows, I am sure there is a system call, In linux one could try "sudo lshw" but most kernels do not seem to support CPU serial numbers, and preliminary research seems to indicate that the general outrage against uniquely identifiable computers means that there is no perfect answer.

What are you trying to do? Almost certainly someone has done it before and it may be wise to reuse or emulate what they have done.

link|flag
vote up 0 vote down

Even with CPUID enabled is there actually a serial number available in modern processors? I remember there being a big outcry in the Pentium 3 days when this whole serial number issue was raised.

link|flag
vote up 2 vote down

Remember that most computers these days ship with CPU ID disabled in the BIOS. See CPUID on Wikipedia

link|flag
vote up 3 vote down

I guess quite a few compiler do offer some wrapper or the like around the mentioned command. Here's an example

#include <stdlib.h>
#include <string.h>
#include <intrinsics.h>

_CPUID cpuinfo;
int main(void) {
_cpuid(&cpuinfo);
printf("Vendor: %s\n", cpuinfo.Vendor);
return 0;
}

Output:

Vendor: GenuineIntel
link|flag
vote up 0 vote down

Some more details please: operating system, language.

For example on Windows you can get it by using WMI and reading Win32_Processor.ProcessorId.

link|flag
That is for information about processor's features. – icelava Sep 18 '08 at 6:33
Yes, and ProcessorId is some kind of (semi) unique identifier for the processor. – Biri Sep 18 '08 at 6:49
vote up 1 vote down

Use the CPUZ tool: http://www.cpuid.com/cpuz.php

link|flag
Since this is a programming site, i would suspect he is asking about how to programmatically get the serial number. He used licensing tag which suspects that he is going to use it to create serial-numbers for his application. – Espo Sep 18 '08 at 6:20
Good point - the question could be clearer. – Bruce Sep 20 '08 at 2:53
vote up 2 vote down

You can use CPUID command.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.