Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Getting CPU speed from windows registry... 2

Status
Not open for further replies.

XPPROGRAMMER

Programmer
Nov 15, 2004
44
US
Hello everyone,

can you please tell me how to locate the speed of the CPU
in windows registry keys? Hope you can provide it for
windows 2000 pro and windows XP pro.
thanks for the help.
 

HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0
"ProcessorNameString"=

Cheers!
 
I always wondered about that. Many thanks.

BUT is there a way to get this without using the registry? Many people do not know (and indeed should not know) about it's existance.

per ardua ad astra
 
j0ckser,

Running "dxdiag" displays the processor details on the 'System' tab.

Rik
 
j0ckser wrote:
>BUT is there a way to get this without using the registry? Many people do not know (and indeed should not know) about it's existance.

Another alternative is to run this 3-line script (.vbs) by double-click.
Code:
for each ocpu in getobject("winmgmts:root\cimv2").instancesof("win32_processor")
	wscript.echo "Current clock speed : " & ocpu.currentclockspeed & " Mhz"
next
- tsuji
 
thank you richard. star to you; exactly what i was looking for.

thanks to others for offers.

per ardua ad astra
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top