Вверх ↑
Ответов: 2125
Рейтинг: 159
#1: 2006-11-20 16:14:05 ЛС | профиль | цитата
Вот так можно посмотреть все свойства всех процессоров, доступные через WMI
set oCollection = GetObject("winmgmts:{impersonationLevel=impersonate}\.
ootcimv2").ExecQuery("select * from Win32_Processor")
For Each item In oCollection
s = ""
For Each x In item.Properties_
s = s & x.Name & " = " & x.Value & vbNewLine
Next
MsgBox s
Next
карма: 1

0