Getting System Information with wmic on Windows
Getting System Information with wmic on Windows
CPU wmic cpu get name
RAM wmic MEMPHYSICAL get MaxCapacity
MB wmic baseboard get product
MB Version wmic baseboard get version
MB BIOS wmic bios get SMBIOSBIOSVersion
GPU Name wmic path win32_VideoController get name
GPU Driver wmic path win32_VideoController get DriverVersion
Display Resolution wmic path win32_VideoController get VideoModeDescription
Windows Version wmic OS get Caption,OSArchitecture,Version
Hardrives wmic DISKDRIVE get Caption
or all of them in a single cmd command
echo --------------- & wmic cpu get name & wmic MEMPHYSICAL get MaxCapacity & wmic baseboard get product & wmic baseboard get version & wmic bios get SMBIOSBIOSVersion & wmic path win32_VideoController get name & wmic path win32_VideoController get DriverVersion & wmic path win32_VideoController get VideoModeDescription & wmic OS get Caption,OSArchitecture,Version & wmic DISKDRIVE get Caption && echo ---------------
---------------
Name
AMD FX(tm)-8350 Eight-Core Processor
MaxCapacity
33554432
Product
SABERTOOTH 990FX R2.0
Version
Rev 1.xx
SMBIOSBIOSVersion
2501
Name
Radeon (TM) RX 480 Graphics
DriverVersion
21.19.407.0
VideoModeDescription
1920 x 1200 x 4294967296 colors
Caption OSArchitecture Version
Microsoft Windows 10 Pro 64-bit 10.0.14393
Caption
Samsung SSD 850 EVO 1TB
Samsung SSD 850 PRO 512GB
TOSHIBA DT01ACA200
---------------