You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
732 B
17 lines
732 B
'***************************************************************************
|
|
'This script tests the enumeration of instances using XML/HTTP
|
|
'***************************************************************************
|
|
On Error Resume Next
|
|
|
|
Dim objLocator
|
|
Set objLocator = CreateObject("WbemScripting.SWbemLocator")
|
|
|
|
' Replace the first argument to this function with the URL of your WMI XML/HTTP server
|
|
' For the local machine, use the URL as below
|
|
Dim objService
|
|
Set objService = objLocator.ConnectServer("[http://localhost/cimom]", "root\cimv2")
|
|
|
|
' Now enumerate the processors on your machine
|
|
for each processor in objService.InstancesOf ("Win32_processor")
|
|
WScript.Echo "Processor:", processor.description
|
|
next
|