Click here to Skip to main content
15,867,785 members
Articles / Programming Languages / VBScript
Article

Retrieving hardware information with WMI

Rate me:
Please Sign up or sign in to vote.
4.89/5 (39 votes)
7 Mar 20042 min read 436.6K   14.1K   108   54
An article on using WMI to retrieve hardware information.

Image 1

Introduction

Windows Management Instrumentation (WMI) is a scalable system management infrastructure that uses a single, consistent, standards-based, extensible, object-oriented interface. WMI provides you with a standard way to interact with system management information and the underlying WMI APIs. WMI is used primarily by system management application developers and administrators to access and manipulate system management information.

The purpose of WMI is to provide a standardized means for managing your computer system, be it a local computer or all the computers in an enterprise. In its simplest terms, management is little more than collecting data about the state of a managed object on the computer system and altering the state of the managed object by changing the data stored about the object. A managed object can be a hardware entity, such as a memory array, port, or disk drive. It can also be a software entity, such as a service, user account, or page file.

WMI can manage the many components of a computer system. In managing a hard disk, you can use WMI to monitor the amount of free space remaining on the disk. You could also use WMI to remotely alter the state of the drive by deleting files, changing file security, or partitioning or formatting the drive.

WMI is not only a powerful tool to collect system information, it is also very easy to use. Existing scripting WMI interface makes it possible to be used for system administrators and web-designers as well as for skilled programmers.

Presented application displays hardware information in HTML page and uses VBScript as back-end programming language.

First of all, we set strComputer (name of the computer to get information from) to "." - current computer, and write function GetWMIServices() - this function will be used in all procedures that get information from WMI and can be modified to get WMI services from another computer.

Then we define some function that will format output - WMIDateStringToDate(), DisplayOutputHeader(), DisplayOutput(), GetTableHeader(), GetTableFooter(), GetRow(). With these functions, we will have standardized output.

Code

For example, the code for retrieving and displaying processor(s) information is:

VBScript
Function  ShowProcessorInfo()
  On  Error  Resume  Next
  DisplayOutputHeader("Processor  -  Win32_Processor")
  str  =  ""
  Set  objWMIService  =  GetWMIServices()
  Set  colItems  =  objWMIService.ExecQuery( _
    "Select  *  from  Win32_Processor")
  For  Each  objItem  in  colItems
          str  =  str  &  GetTableHeader()
          str  =  str  &  GetRow("Address  Width",  objItem.AddressWidth)
          str  =  str  &  GetRow("Architecture",  objItem.Architecture)
          str  =  str  &  GetRow("Availability",  objItem.Availability)
          str  =  str  &  GetRow("CPU  Status",  objItem.CpuStatus)
          str  =  str  &  GetRow("Current  Clock  Speed",  _
             objItem.CurrentClockSpeed)
          str  =  str  &  GetRow("Data  Width",  objItem.DataWidth)
          str  =  str  &  GetRow("Description",  objItem.Description)
          str  =  str  &  GetRow("Device  ID",  objItem.DeviceID)
          str  =  str  &  GetRow("Ext  Clock",  objItem.ExtClock)
          str  =  str  &  GetRow("Family",  objItem.Family)
          str  =  str  &  GetRow("L2  Cache  Size",  objItem.L2CacheSize)
          str  =  str  &  GetRow("L2  Cache  Speed",  objItem.L2CacheSpeed)
          str  =  str  &  GetRow("Level",  objItem.Level)
          str  =  str  &  GetRow("Load  Percentage",  objItem.LoadPercentage)
          str  =  str  &  GetRow("Manufacturer",  objItem.Manufacturer)
          str  =  str  &  GetRow("Maximum  Clock  Speed",  _
            objItem.MaxClockSpeed)
          str  =  str  &  GetRow("Name",  objItem.Name)
          str  =  str  &  GetRow("PNP  Device  ID",  objItem.PNPDeviceID)
          str  =  str  &  GetRow("Processor  Id",  objItem.ProcessorId)
          str  =  str  &  GetRow("Processor  Type",  objItem.ProcessorType)
          str  =  str  &  GetRow("Revision",  objItem.Revision)
          str  =  str  &  GetRow("Role",  objItem.Role)
          str  =  str  &  GetRow("Socket  Designation",  _
              objItem.SocketDesignation)
          str  =  str  &  GetRow("Status  Information",  objItem.StatusInfo)
          str  =  str  &  GetRow("Stepping",  objItem.Stepping)
          str  =  str  &  GetRow("Unique  Id",  objItem.UniqueId)
          str  =  str  &  GetRow("Upgrade  Method",  objItem.UpgradeMethod)
          str  =  str  &  GetRow("Version",  objItem.Version)
          str  =  str  &  GetRow("Voltage  Caps",  objItem.VoltageCaps)
          str  =  str  &  GetTableFooter()
  Next
  DisplayOutput(str)
End  Function

HardwareInfo retrieves also information about baseboard, batteries, BIOS, memory settings, PnP devices, ports and some others.

At the last point, customize look of the application with cascading style sheet - the easiest way to create good looking interface. Application can run as is - just double-click on index.hta file or it can be compiled into single file. Retrieving information about installed hardware items with Windows Management Instrumentation is very easy and requires minimal programming skills.

HardwareInformation application is written as HTA (HTML application) and compiled with compiler provided with www-Sharp.ClrHost that is available for free. www-Sharp includes WMI viewer that can be used to visually explore WMI classes and properties and write powerful WMI applications.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Russian Federation Russian Federation
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionHow to port this for the web? Pin
hartertobak7-Apr-11 2:56
hartertobak7-Apr-11 2:56 
AnswerRe: How to port this for the web? Pin
User 16540427-Apr-11 3:16
User 16540427-Apr-11 3:16 
QuestionWMI HACK Pin
pushpendrak7-Apr-10 0:23
pushpendrak7-Apr-10 0:23 
Hi,
can anybody tell me that, WMI services retrieving it from directly Hardware (real time) or from registry.
if it is not real time from hardware, can this data (whatever WMI is providing like processor ID or MB serial no) be changed? may be for few seconds.........
AnswerRe: WMI HACK Pin
User 16540427-Apr-10 0:40
User 16540427-Apr-10 0:40 
GeneralRe: WMI HACK Pin
pushpendrak7-Apr-10 17:43
pushpendrak7-Apr-10 17:43 
GeneralWMI data to Access DB on the WEB server Pin
mail4kanthan7-Nov-07 4:58
mail4kanthan7-Nov-07 4:58 
GeneralRe: WMI data to Access DB on the WEB server Pin
User 16540427-Nov-07 6:48
User 16540427-Nov-07 6:48 
Questioncould this returned data be hacked? Pin
ai.unit25-Jan-07 17:09
ai.unit25-Jan-07 17:09 
AnswerRe: could this returned data be hacked? Pin
User 165404225-Jan-07 22:58
User 165404225-Jan-07 22:58 
Answer[Message Removed] Pin
nompel5-Oct-08 0:06
nompel5-Oct-08 0:06 
Generalto get installed software Pin
ananth_r12-Nov-06 17:56
ananth_r12-Nov-06 17:56 
GeneralRe: to get installed software Pin
User 165404212-Nov-06 22:09
User 165404212-Nov-06 22:09 
GeneralIP n MAC Address Pin
Suhaimi Wagiman25-Apr-06 23:24
Suhaimi Wagiman25-Apr-06 23:24 
GeneralRe: IP n MAC Address Pin
User 165404226-Apr-06 11:08
User 165404226-Apr-06 11:08 
GeneralRe: IP n MAC Address Pin
xExTxCx25-May-07 6:36
xExTxCx25-May-07 6:36 
QuestionHow send data to Sql server? Pin
dd_tt_cc6-Apr-06 9:09
dd_tt_cc6-Apr-06 9:09 
AnswerRe: How send data to Sql server? Pin
User 16540426-Apr-06 9:20
User 16540426-Apr-06 9:20 
QuestionI have A similar Project My self Pin
ujjvalp26-Feb-06 16:23
ujjvalp26-Feb-06 16:23 
AnswerRe: I have A similar Project My self Pin
User 165404226-Feb-06 20:42
User 165404226-Feb-06 20:42 
GeneralWin32_Processor & UniqueID Pin
Vitoto26-Jan-06 4:24
Vitoto26-Jan-06 4:24 
GeneralRe: Win32_Processor & UniqueID Pin
User 165404228-Jan-06 11:30
User 165404228-Jan-06 11:30 
GeneralRe: Win32_Processor & UniqueID Pin
mitchell5020-Dec-06 15:05
mitchell5020-Dec-06 15:05 
GeneralWeb Porting Pin
Viper182312-Sep-05 4:39
Viper182312-Sep-05 4:39 
GeneralRe: Web Porting Pin
User 165404212-Sep-05 11:46
User 165404212-Sep-05 11:46 
GeneralRe: Web Porting Pin
Ian Cunningham21-Sep-05 0:24
Ian Cunningham21-Sep-05 0:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.