Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Windows Management Instrumentation

From Wikipedia, the free encyclopedia
(Redirected fromWinmgmt)
Windows interface for monitoring and notification
Windows Management Instrumentation
Developer(s)Microsoft
Operating systemMicrosoft Windows
PlatformIA-32,x86-64, andARM (historicallyItanium,DEC Alpha,MIPS, andPowerPC)
TypeSystems management
LicenseSame asMicrosoft Windows
Websitelearn.microsoft.com/en-us/windows/win32/wmisdk/wmi-start-page

Windows Management Instrumentation (WMI) is a set of extensions to theWindows Driver Model that provides anoperating system interface through whichinstrumented components provide information and notification. WMI isMicrosoft's implementation of theWeb-Based Enterprise Management (WBEM) andCommon Information Model (CIM) standards from theDistributed Management Task Force (DMTF).

WMI allowsscripting languages (such asVBScript orPowerShell) to manageMicrosoft Windowspersonal computers andservers, both locally and remotely. WMI comes preinstalled inWindows 2000 and later. It is available as a download forWindows NT 4.0,[1]Windows 95, andWindows 98.[2]

Also included with Windows wasWindows Management Instrumentation Command-line (WMIC), aCLI utility to interface with WMI.[3] However, starting withWindows 10, version 21H1 andWindows Server 2022, WMIC is deprecated in favor ofPowerShell.[4]

Purpose of WMI

[edit]

The purpose of WMI is to define a proprietary set of environment-independent specifications that enable sharing management information between management apps. WMI prescribesenterprise management standards and related technologies for Windows that work with existing management standards, such asDesktop Management Interface (DMI) andSimple Network Management Protocol (SNMP). WMI complements these other standards by providing a uniform model for accessing management data from any source.

Development process

[edit]

Because WMI abstracts the manageable entities withCommon Information Model (CIM) and a collection of providers, the development of a provider implies several steps. The major steps can be summarized as follows:

  1. Create the manageable entity model
    1. Define a model
    2. Implement the model
  2. Create the WMI provider
    1. Determine the provider type to implement
    2. Determine the hosting model of the provider
    3. Create the provider template with theATL wizard
    4. Implement the code logic in the provider
    5. Register the provider with WMI and the system
  3. Test the provider
  4. Create consumer sample code.

Providers

[edit]
This articleis missing information about the nature of WMI providers. Please expand the article to include this information. Further details may exist on thetalk page.(February 2025)

Since the release of the first WMI implementation during theWindows NT 4.0 SP4 era (as an out-of-band download),Microsoft has consistently added WMI providers to Windows:

Many customers have interpreted the growth in numbers of providers as a sign that Microsoft envisions WMI as the ubiquitous management layer of Windows.

Beyond the scripting needs, most leading management solutions, such asMicrosoft Operations Mamager (MOM),System Center Configuration Manager (SCCM),Active Directory Services (ADS),HPOpenView (HPOV), and the various offerings ofBMC Software andCA, Inc. are WMI-enabled, i.e., capable of consuming and providing WMI information. This enablesadministrators who lack WMI coding skills to benefit from WMI.

Features

[edit]

WMI offers many features out of the box. Here are the most important advantages:

  • Automation interfaces: WMI comes with a set of automation interfaces ready to use. Beyond the WMI class design and the provider development, the Microsoft development and test teams are not required to create, validate or test a scripting model as it is already available from WMI.
  • .NET management interfaces: TheSystem.Management namespace[7] makes WMI classes available to all .NET apps and scripts written inC# orPowerShell. Beyond the WMI class design and the provider development, the Microsoft development and test teams are not required to create, validate and test new assemblies to support a new namespace in .NET as this support is already available from WMI.
  • COM interfaces:Unmanaged code in Microsoft Windows (e.g., apps written inC orC++ languages) can interact with the standard set of WMI interfaces for theComponent Object Model (COM) to access WMI providers and their supported WMI classes. Developers of WMI providers can leverage the same COM interfaces in their projects to furnish said classes.
  • Remoting capabilities over DCOM and SOAP: In addition to local management via COM, WMI supportsremoting viaDistributed COM (DCOM) andSOAP. The latter is available inWindows Server 2003 R2 and later, through theWS-Management initiative led byMicrosoft,Intel,Sun Microsystems, andDell. This initiative allows running any scripts remotely or to consume WMI data through interfaces that handle SOAP requests and responses. WS-Management can consume everything that a WMI provider generates, although embedded objects in WMI instances were not supported untilWindows Vista. WS-Management later became an integral part of PowerShell. Unlike SOAP-based remoting, DCOM-based remoting requires a proxyDLL deployed on each client machine.
  • Support for queries: WMI offers support forWQL queries.[8] This means WMI can still filter the results of a provider that doesn't implement filtering or queries.
  • Event-handling capabilities: WMI can notify a subscriber of events of interest. WMI uses theWQL to submit event queries and define the type of events to be returned. Anyone writing a WMI provider can have the benefit of this functionality at no cost for their customers. It will be up to consumers to decide how they desire to consume the management information exposed by the WMI provider.

To speed up the process of writing a WMI provider, the WMI team developed theWMI ATL Wizard to generate the code template implementing a provider. The code generated is based on the WMI class model initially designed by the developer. The WMI provider developer will be able to interface the pre-defined COM or DCOM interfaces for the WMI provider with its set of native APIs retrieving the management information to expose.

WMI is based on an industry standard calledCommon Information Model (CIM) defined by theDistributed Management Task Force (DMTF). TheCIM class-based schema is defined by a consortium of manufacturers and software developers for the requirements of the industry. Any developer can write code that fits into this model. For instance,Intel develops WMI providers for itsnetwork adapters.HP leveraged existing WMI providers and developed custom WMI providers for itsOpenView enterprise management solutions. IBM'sTivoli management suite consumes WMI. Starting withWindows XP SP2, Microsoft leverages WMI to get status information fromantivirus software andfirewalls.

Service

[edit]

On theWindows NT family of operating systems, WMI runs as aWindows service calledWinMgmt. On theWindows 9x family, WMI runs in the context of theWinMgmt.exe executable file. On both Windows 9x and Windows NT families,WinMgmt.exe is available as a command-line utility for servicing the WMI repository.[9]

WMI tools

[edit]

Microsoft provides the following WMI tools for developers and IT pros:

  • MOF compiler (MOFComp.exe): The Managed Object Format (MOF) compiler parses a file containing MOF statements and adds the classes and objects defined in the file to the CIM repository. The MOF format is a specific syntax to define CIM class representation in anASCII file. MOF's role for CIM is comparable toMIB's role forSNMP.MOFComp.exe is included in every WMI installation. Every definition existing in the CIM repository is initially defined in an MOF file. MOF files are located in%SystemRoot%\System32\WBEM. During the WMI setup, they are loaded in the CIM repository.
  • WMI Administrative Tools: This suite of tool consists of WMI CIM Studio, WMI Object Browser, WMI Event Registration, and WMI Event Viewer. The most important tool for a WMI provider developer is WMI CIM Studio as it helps in the initial WMI class creation in the CIM repository. It uses a web interface to display information and relies on a collection ofActiveX components installed on the system when it runs for the first time. WMI CIM Studio can:
    • Connect to a chosen system and browse the CIM repository in any namespace available.
    • Search for classes by their name, by their descriptions or by property names.
    • Review the properties, methods, and associations related to a given class.
    • See the instances available for a given class of the examined system.
    • Perform Queries in the WQL language.
    • Generate an MOF file based on selected classes.
    • Compile an MOF file to load it in the CIM repository.
  • WBEMTest.exe is a WMI tester tool delivered with WMI. This tool allows an administrator or a developer to perform most of the tasks from a graphical interface that WMI provides at theAPI level. Although available under all Windows NT-based operating systems, this tool is not officially supported by Microsoft. WBEMTest provides the ability to:
    • Enumerate, open, create, and delete classes.
    • Enumerate, open, create, and delete instances of classes.
    • Select anamespace.
    • Perform data and event queries.
    • Execute methods associated to classes or instances.
    • Execute every WMI operation asynchronously, synchronously or semi-asynchronously.
  • WMI command line tool (WMIC) is a scripting and automation utility that allows information retrivial and system administration via WMI, using some simple keywords (aliases). WMIC.exe is available on all Windows versions sinceWindows XP. Starting withWindows 10, version 21H1 andWindows Server 2022, WMIC is deprecated in favor ofPowerShell.[4] InWindows 11, version 24H2, WMIC is not installed by default. A Linux port of WMIC,wmi-client, is written inPython and is based onSamba4.[10]
  • WBEMDump.exe: This command-lie tool is a component of thePlatform SDK and comes a correspondingVisual C++ project. The tool can show the CIM repository classes, instances, or both. It is possible to retrieve the same information WMIC retrieves.WBEMDump.exe requires more specific knowledge about WMI, as it doesn't abstract WMI as WMIC. It is also possible to execute methods exposed by classes or instances. Even if it is not a standard WMI tool delivered with the system installation, this tool can be quite useful for exploring the CIM repository and WMI features.
  • WMIDiag.vbs (discontinued): The WMI Diagnosis Tool is aVBScript for testing and validating WMI on Windows 2000 and later. This script was downloadable from Microsoft until August 2020.[11] The download includes pretty thorough documentation and the tool supports numerous switches. When run, it will generate up to four text files which: list the steps taken (the LOG file), an overview of the results (REPORT file), a statistics file (in comma separated values format), and optionally a file listing of the providers registered on the machine (PROVIDERS, also in comma separated values format). The report file that is generated includes a list of the issues identified and potential ways to fix them.

Wireless networking example

[edit]

In the.NET Framework, the ManagementClass class represents a Common Information Model (CIM) management class. A WMI class can be aWin32_LogicalDisk in the case of a disk drive, or aWin32_Process, such as a running program likeNotepad.exe.

This example shows howMSNdis_80211_ServiceSetIdentifier WMI class is used to find theSSID of theWi-Fi network that the system is currently connected to in the language C#:

ManagementClassmc=newManagementClass("root\\WMI","MSNdis_80211_ServiceSetIdentifier",null);ManagementObjectCollectionmoc=mc.GetInstances();foreach(ManagementObjectmoinmoc){stringwlanCard=(string)mo["InstanceName"];boolactive;if(!bool.TryParse((string)mo["Active"],outactive)){active=false;}byte[]ssid=(byte[])mo["Ndis80211SsId"];}

TheMSNdis_80211_ServiceSetIdentifier WMI class is only supported on Windows XP and Windows Server 2003.

WMI driver extensions

[edit]

The WMI extensions toWDM provide kernel-levelinstrumentation such as publishing information, configuring device settings, supplying event notification fromdevice drivers, and allowing administrators to set data security through a WMI provider known as theWDM provider. The extensions are part of the WDM architecture; however, they have broad utility and can be used with other types of drivers as well (such asSCSI andNDIS).

The WMI Driver Extensions service monitors all drivers and event trace providers that are configured to publish WMI or event trace information. Instrumented hardware data is provided by way of drivers instrumented for WMI extensions for WDM. WMI extensions for WDM offer a set of Windows device driver interfaces for instrumenting data within the driver models native to Windows, soOEMs andIHVs can easily extend the instrumented data set and add value to a hardware/software solution. The WMI Driver Extensions, however, are not supported byWindows Vista and later operating systems.[12]

See also

[edit]

References

[edit]
  1. ^"WMI Redistributable for Windows NT".microsoft.com. Archived fromthe original on 24 February 2010. Retrieved4 May 2018.
  2. ^"WMI Redistributable for Windows 95 and Windows 98".microsoft.com. Archived fromthe original on 23 April 2007. Retrieved4 May 2018.
  3. ^"A Description of the Windows Management Instrumentation (WMI) Command-Line Utility (Wmic.exe)".Archived from the original on 2007-05-02.
  4. ^ab"WMIC: WMI command-line utility". Microsoft. 8 March 2023.Archived from the original on 14 October 2023.
  5. ^"Windows Vista Client Manageability".microsoft.com.Archived from the original on 3 March 2016. Retrieved4 May 2018.
  6. ^"WMI providers supported in Windows 10".Microsoft. 25 June 2017.Archived from the original on 30 September 2018. Retrieved30 September 2018.
  7. ^"System.Management Namespace"..NET Library.Microsoft. 7 February 2025 – viaMicrosoft Learn.
  8. ^"WMI query language (WQL) via PowerShell".ravichaganti.com. 1 May 2011. Archived fromthe original on 12 October 2017. Retrieved4 May 2018.
  9. ^White, Steven (3 November 2023)."winmgmt".Windows App Development.Microsoft – viaMicrosoft Learn.
  10. ^D'Vine, Rhonda."Ubuntu – Error".packages.ubuntu.com.Archived from the original on 2 May 2017. Retrieved4 May 2018.
  11. ^"The WMI Diagnosis Utility -- Version 2.2".Download Center.Microsoft. 24 April 2015. Archived fromthe original on 6 August 2020.
  12. ^"The Windows Vista and Windows "Longhorn" Server Developer Story: Application Compatibility Cookbook".msdn2.microsoft.com.Archived from the original on 21 April 2008. Retrieved4 May 2018.

Further reading

[edit]

External links

[edit]
Graphics and UI
Audio
Multimedia
Web
Data access
Networking
Communication
Administration and
management
Component model
Libraries
Device drivers
Security
.NET
Software factories
IPC
Accessibility
Text and multilingual
support
Management
tools
Apps
Shell
Services
File systems
Server
Architecture
Security
Compatibility
API
Games
Discontinued
Games
Apps
Others
Spun off to
Microsoft Store
Standards ofDMTF
DMTF standards
Related standards
Implementations
Retrieved from "https://en.wikipedia.org/w/index.php?title=Windows_Management_Instrumentation&oldid=1279278086#WMI_tools"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp