Ich habe noch diesen Beitrag gefunden:
http://www.delphipraxis.net/399001-post5.html
Dort wird die Klasee
Win32_Processor genutzt, ich glaube mehr Informationen bekommst du sonst nicht.
Mit dem Class-Generator kann man sich auch eine sehr leicht eine angepasste Win32_Processor Klasse für Delphi oder andere Sprachen erstellen.
Zum direkten Testen ist der Codegenerator am besten:
http://theroadtodelphi.wordpress.com...-code-creator/
Und für Klassen zu erstellen gibt es:
http://theroadtodelphi.wordpress.com...ass-generator/
Eine
Win32_ComputerSystem Klasse kann man damit auch erstellen, welche Klaus01 in seinem Beitrag zeigt.
Hier noch was
http://www.sql-server-pro.com/physical-cpu-count.html
Dort speziell dieser Abschnitt:
Zitat:
After a lot of research I discovered that there is a way using
WMI. The Win32_Processor object has a property called SocketDesignation which is unique for the first core in each socket. The
MSDN documentation describes it as "Type of chip socket used on the circuit.", but every one I've looked at seems to be more like a socket identifier. Assuming this is always the case, you can get the physical CPU count by counting the number of unique values.
Aber scheinbar funktioniert das auch nicht immer...