WMI (Windows Management Instrumentation) – Home

Introduction to WMI

Who will benefit from learning about WMI (Windows Management Instrumentation) commands?  Here are the people who I had in mind as I wrote this section.  Network managers who want to collect specific data from one (or more) server.  IT professionals who what to know precisely what’s happening in their Microsoft operating system. Those techies who love remote control without hassle.

In terms of scripting, WMI has that extra edge; you may be able to invent a scriplet that you could develop into a commercial application.  While there is range of third products for WMI, with time and effort there is no reason that you cannot create a similar or better product.  The raw WMI commands, the VBScript building blocks are freely available, in fact you can investigate the whole range of WMI objects and properties with Scriptomatic or WBEMTEST.

Introduction to WMI Topics

 ♦

WMI Perspective

To appreciate the beauty of a jewel, you should view the crystals from different angles.  The same applies to the diamond that is WMI, I recommend that to gain perspective and understanding, examine WMI from these five angles.

  1. Think of WMI as a database holding information about a computer’s disk, services, processor and objects.
  2. Regard WMI as a method to automate the collection of hardware and software data.
  3. View WMI as a pipe connecting magically to the inner secrets of the Microsoft operating system.
  4. Approach WMI as a distinctive dialect of VBScript with its own WQL language.
  5. Treat WMI as a tool rather like a microscope to probe, and to measure the operating system’s properties.

If you think about it, the operating system knows everything!  Windows Server 2008 / 2003 must know how much memory each process is using, how much free space there is on each partition, which devices are on which Bus.  With WMI scripting, you can tap into the operating system’s CIM library and thus query information about any aspect of the Windows Server 2008 / 2003 or XP.

Examples of WMI in Action

Guy Recommends: WMI Monitor and It’s Free!Solarwinds Free WMI Monitor

Windows Management Instrumentation (WMI) is one of the hidden treasures of Microsoft’s operating systems.  Fortunately, SolarWinds have created a Free WMI Monitor so that you can discover these gems of performance information, and thus improve your scripts.

Take the guess work out of which WMI counters to use when scripting the operating system, Active Directory or Exchange Server. Give this WMI monitor a try – it’s free.

Download your free copy of WMI Monitor

WMI – Components

There is no escaping acronyms.  Guy’s 3rd law says, the more acronyms that you see on a page, the greater the degree of difficulty you are about to encounter.

Knowledge is power.  Until you know what an acronym means you feel intimidated, rather like an outsider to a clique.  However, once you understand what the letters stand for, you can join the club and savour the power of those capital letters, for example WMI (Windows Management Instrumentation).

As aside, to me, all acronyms have a personality, WMI is like a no-nonsense inspector and in fact, WMI reminds me of an HMI.  In England, an HMI is better known as a school inspector.  Imagine that I made a mistake and addressed WMI as Windows Management Information, I half expect that it would sharply correct me and say, ‘Actually, I’m Windows Management Instrumentation‘.  WMI is all about monitoring what is going on, all the way from the hardware to the operating system’s services.  For example, from disk sectors, to SCSI Bus to the File Replication Service.

CIMv2 – Common Information Model

To my subconscious mind, the acronym Cimv2 is saying, Sim or even Sin.  Perhaps my negative vibes are coming from the word Common in its title, Common Information Model (CIM).  Actually, far from being sinful or common, CIM is a great idea.  Common refers to shared standards, which are agreed by Microsoft, Oracle, Intel and everyone else in computing.

When you build WMI scripts, the most frequently used connection is to root\cimv2.  However, you can also try: root\default or root\directory\ldap.

DMTF (Distributed Management Task Force) are behind the idea of CIM.  As a result, Microsoft, Intel, Oracle and many other manufacturers agree standards for computer schemas.  The CIM system works on Instances of objects, Classes of object (Sub-Classes), and Properties of the object.  Naturally WMI has methods to get, select, delete or enumerate an instance of that object.  My advice is just trust that with DMTF in the background, the CIM schema has been planned and implemented in minute detail.

Another view of CIM is that it provides a handle so that we can probe the processor and measure all sorts of properties, for example, L2Cache, CurrentClockspeed, Temperature and Fan voltage.  Whenever I look at a Class of object for the first time, I am stunned by the sheer number of properties that WMI can display.  Every object has features that I did not even know existed.  I hope that your imagination is leaping ahead and thinking of tasks which you can automate using CIM and WMI.

I expect that you have already worked out that v2 means version two.  As of 2010, CIM specifications and schemas are up to version 2.9, and what do cynics say – never trust a program until it reaches version three.  On that score CIM is just about to come of age, and with the backing of the DMTF, it surely has a bright future.

Solarwinds Config GeneratorGuy Recommends: The Free Config Generator

SolarWinds’ Config Generator is a free tool, which puts you in charge of controlling changes to network routers and other SNMP devices.  Boost your network performance by activating network device features you’ve already paid for.

Guy says that for newbies the biggest benefit of this free tool is that it will provide the impetus for you to learn more about configuring the SNMP service with its ‘Traps’ and ‘Communities’. Try Config Generator now – it’s free!

Download your free copy of Config Generator

CIMOM – CIM Object Manager. CIMOM is better known as winmgmts

Officially, winmgmt.exe provides the shell for the CIM objects.  To me winmgmts is like a butler who looks after his guests efficiently and unobtrusively.  Almost every WMI script will call for the CIM ‘butler’, watch out for command: GetObject("winmgmts…root\cimv2….  If you want to get a feel for these components, I challenge you to try winmgmt /? from the command line.  (Don’t ask me why the command line requires the singular, winmgmt, whereas the VBScript needs the plural winmgmts.)

WBEM – Web Based Enterprise Management.

WBEM, says to me Web Management.  Compared with the heavyweight WMI, WBEM is the lightweight front end.  The manager in WBEM is like a boxer’s manager or a showbiz presenter, WBEM is the mouthpiece while the boxer or star puts on the show.  Talking of being flashy, you can see WBEM in action by typing WBEMTEST in the Run command’s dialog box.  If you try this, watch out for the CIM schema, also note the WQL window in WBEMTEST.  As we will see later, WQL is a dialect of SQL.

Two ways of seeing WMI in action:

1) Scriptomatic V2.  A ‘must have utility for WMI’, make sure you get version two.  See more here

2) WBEMTEST – Built-in, just type from the command line.  See more here

Summary

Think of WMI as multi-faceted jewel.  In practical terms, WMI opens doors for you to control and automate your computers.  However, there is much to learn, so assemble your tools and start creating scripts.

Who will benefit from building WMI scripts to monitor the Operating System?   These are the people that I had in mind when I wrote this section.  Network managers, IT professionals and those techies who love remote control without hassle.

If you like this page then please share it with your friends

 


See more VBScript WMI examples:

WMI Tutorial   • Win32_Process   • WMI Memory   • WMI Basics   • Free Download of WMI Monitor

WMI VBS   • VBScript Services   • WMI Disks   • WMI Physical Disks

WMI Home   • WMI Win32   • WMI Printer   • VBScript Echo   • WMI VBScript

 

Introduction to WMIDownload my eBook:  Introduction to WMI – only  $6.25

30+ scripts to get you started with WMI.  Topics include memory, disk, process, and, File System Object.

In addition to the ebook, you get a PDF and version of Introduction to WMI.