• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Win32_Processor reading Processor information Wrong

ShadowStriker

[H]ard|Gawd
Joined
Oct 8, 2009
Messages
1,669
Hi!

I'm trying to get Win32_Processor to give me information on the new Intel Core i3, i5, i7 processors, but it keeps telling me they're P2 or P3 machines. Anyone know if this is a bug like KB953955?

Thanks!
 
Last edited:
Win32_Processor won't give you that information. That only decodes certain bits to figure out models and it's hopelessly out of date since identifier bits were expanded years ago.

You would need to retrieve the ProcessorNameString from the registry as returned by CPUID. It's located in:
HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0

(remove space in preceding line added by vB)
 
Win32_Processor won't give you that information. That only decodes certain bits to figure out models and it's hopelessly out of date since identifier bits were expanded years ago.

You would need to retrieve the ProcessorNameString from the registry as returned by CPUID. It's located in:
HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0

(remove space in preceding line added by vB)

Okay, I don't know how this works, but I tried this on a Win7 machine and it gave me the right processor name? Is there something different with how Win32_Processor works between Win7 and XP?
 
Back
Top