|
Computer Info
This example shows accessing computer information.
04 | Set wmiSvcObj = GetObject( "winmgmts:\\" & strCompName & "\root\CIMV2" ) |
05 | Set selComps = wmiSvcObj.ExecQuery( "SELECT * FROM Win32_ComputerSystem" ) |
07 | For Each compObj In selComps |
08 | WScript.Echo "Computer Name: " & compObj.Name |
09 | WScript.Echo "System Type: " & compObj.SystemType |
10 | WScript.Echo "Number Of Processors: " & compObj.NumberOfProcessors |
12 | WScript.Echo "Manufacturer: " & compObj.Manufacturer |
13 | WScript.Echo "Model: " & compObj.Model |
|
It gives the following output,
Computer Name: BETHECODER
System Type: X86-based PC
Number Of Processors: 1
Manufacturer: Dell Inc.
Model: Latitude E6400
|
|