
03-20-2005, 10:44 PM
|
 |
Senior Contributor
|
|
Join Date: Oct 2003
Location: Chattanooga, TN USA
Posts: 1,069
|
|
this may help.
could even get you started:
Code:
Private Sub Command1_Click()
Dim cpuSet As SWbemObjectSet
Dim cpu As SWbemObject
Set cpuSet = GetObject("winmgmts:{impersonationLevel=impersonate}"). _
InstancesOf("Win32_Processor")
For Each cpu In cpuSet
Print "Processor name:" & cpu.Name
Print "Current running speed:" & cpu.CurrentClockSpeed
Print "Maxmimum running speed:" & cpu.MaxClockSpeed
Next cpu
End Sub
Also:
GetDiskFreeSpace
|
|