Skip to main content
Email Password   helpLost your password?

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:

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.

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
GeneralWMI data to Access DB on the WEB server Pin
mail4kanthan
5:58 7 Nov '07  
GeneralRe: WMI data to Access DB on the WEB server Pin
Viatcheslav V Vassiliev
7:48 7 Nov '07  
Questioncould this returned data be hacked? Pin
ai.unit
18:09 25 Jan '07  
AnswerRe: could this returned data be hacked? Pin
Viatcheslav V Vassiliev
23:58 25 Jan '07  
Answer[Message Removed] Pin
nompel
1:06 5 Oct '08  
Generalto get installed software Pin
ananth_r
18:56 12 Nov '06  
GeneralRe: to get installed software Pin
Viatcheslav V Vassiliev
23:09 12 Nov '06  
GeneralIP n MAC Address Pin
Suhaimi Wagiman
0:24 26 Apr '06  
GeneralRe: IP n MAC Address Pin
Viatcheslav V Vassiliev
12:08 26 Apr '06  
GeneralRe: IP n MAC Address Pin
xExTxCx
7:36 25 May '07  
QuestionHow send data to Sql server? Pin
dd_tt_cc
10:09 6 Apr '06  
AnswerRe: How send data to Sql server? Pin
Viatcheslav V Vassiliev
10:20 6 Apr '06  
QuestionI have A similar Project My self Pin
ujjvalp
17:23 26 Feb '06  
AnswerRe: I have A similar Project My self Pin
Viatcheslav V Vassiliev
21:42 26 Feb '06  
GeneralWin32_Processor & UniqueID Pin
Vitoto
5:24 26 Jan '06  
GeneralRe: Win32_Processor & UniqueID Pin
Viatcheslav V Vassiliev
12:30 28 Jan '06  
GeneralRe: Win32_Processor & UniqueID Pin
mitchell50
16:05 20 Dec '06  
GeneralWeb Porting Pin
Viper1823
5:39 12 Sep '05  
GeneralRe: Web Porting Pin
support@www-sharp.com
12:46 12 Sep '05  
GeneralRe: Web Porting Pin
Ian Cunningham
1:24 21 Sep '05  
GeneralRe: Web Porting Pin
support@www-sharp.com
1:46 21 Sep '05  
GeneralRe: Web Porting Pin
Ian Cunningham
5:01 21 Sep '05  
GeneralRe: Web Porting Pin
support@www-sharp.com
5:33 21 Sep '05  
GeneralRe: Web Porting Pin
Ian Cunningham
6:39 21 Sep '05  
GeneralHDD Info Pin
brendon.pilott
13:23 5 Sep '05  


Last Updated 7 Mar 2004 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009