Get information about your computer with WMI

WMI (Windows Management Instrumentation) is a technology for monitoring and managing systems and computer components.

You can get information from WMI using the standard console utility wmic.exe.

General information

wmic computersystem get /format: list

Operating system

wmic os get /format: list

Users

wmic useraccount get /format: list

Motherboard

wmic baseboard get /format: list

BIOS

wmic bios get /format: list

Processor

wmic cpu get /format: list

RAM

wmic memorychip get /format: list

wmic memphysical get /format: list

Video card

wmic path win32_VideoController get /format: list

Drives

wmic diskdrive get /format: list

wmic logicaldisk get /format: list

wmic partition get /format: list

Author: admin