WMI Console

WMI Console is a command-line interface to WMI called Windows Management Instrumentation Command-line (WMIC).

In Microsoft computer systems, Windows Management Instrumentation (WMI) consists of a set of extensions to the Windows Driver Model that provides an operating system interface through which instrumented components provide information and notification. WMI is Microsoft's implementation of the Web-Based Enterprise Management (WBEM) and Common Information Model (CIM) standards from the Distributed Management Task Force (DMTF).

WMI allows scripting languages (such as VBScript or Windows PowerShell) to manage Microsoft Windows personal computers and servers, both locally and remotely.

Examples:

To list all processes:

wmic > process list

To list all logical disks, their filesystem, name, size and description:

wmic > logicaldisk get filesystem, name, size, description

Read more detailed information on WMI & WMIC syntax:

http://en.wikipedia.org/wiki/Windows_Management_Instrumentation

https://technet.microsoft.com/en-us/library/cc779482(v=ws.10).aspx