' Listing 6: ProcessorInfo.vbs ' Create the WMI object on the local computer. set wmiService = GetObject("winmgmts:\\.\root\CIMV2") ' Use the WMI object to retrieve the processor information. set processors = _ wmiService.execQuery("SELECT * from win32_Processor") ' Display the processor information. for each processor in processors wScript.echo "Manufacturer: " & trim(processor.manufacturer) wScript.echo "Name: " & trim(processor.name) wScript.echo "Description: " & trim(processor.description) wScript.echo "Clock speed: " & trim(processor.maxClockSpeed) wScript.echo Next