Get model name of the computer:
wmic csproduct get name
Get the serial number of a computer:
wmic csproduct get identifyingNumber
Get vendor/company of the computer:
wmic csproduct get vendor
Get drive information.
This basically shows the same as Disk Management but what is interesting is that if you have a drive that is used as a part of a Storage Space in Windows, the drive name will appear as “Microsoft Storage Space Device”. This way you know if your drive is part of a Storage Pool.
wmic diskdrive get name,size,model
Get basic computer system information in a list format:
wmic computersystem list brief /format:list
Example output:
Domain=WORKGROUP
Manufacturer=ASUSTeK COMPUTER INC.
Model=ZenBook S UX391UA
Name=UX391UA
PrimaryOwnerName=UX391UA
TotalPhysicalMemory=17022656512
You can use systeminfo
(without wmic) to get the “whole shebang” like this:
Host Name: UX391UA
OS Name: Microsoft Windows 10 Pro
OS Version: 10.0.17763 N/A Build 17763
OS Manufacturer: Microsoft Corporation
OS Configuration: Standalone Workstation
OS Build Type: Multiprocessor Free
Registered Owner: UX391UA
Registered Organization: N/A
Product ID: 00330-80000-00000-AA162
Original Install Date: 04.10.2016, 15:57:41
System Boot Time: 04.10.2016, 15:53:59
System Manufacturer: ASUSTeK COMPUTER INC.
System Model: ZenBook S UX391UA
System Type: x64-based PC
Processor(s): 1 Processor(s) Installed.
[01]: Intel64 Family 6 Model 142 Stepping 10 GenuineIntel ~1792 Mhz
BIOS Version: American Megatrends Inc. UX391UA.204, 18.05.2018
Windows Directory: C:\WINDOWS
System Directory: C:\WINDOWS\system32
Boot Device: \Device\HarddiskVolume1
System Locale: en-gb;English (United Kingdom)
Input Locale: se;Swedish
Time Zone: (UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna
Total Physical Memory: 16 234 MB
Available Physical Memory: 11 166 MB
Virtual Memory: Max Size: 19 178 MB
Virtual Memory: Available: 13 724 MB
Virtual Memory: In Use: 5 454 MB
Page File Location(s): C:\pagefile.sys
Domain: WORKGROUP
Logon Server: \\UX391UA
Hotfix(s): N/A
Network Card(s): 2 NIC(s) Installed.
[01]: Intel(R) Dual Band Wireless-AC 8265
Connection Name: WiFi
DHCP Enabled: Yes
DHCP Server: 192.168.100.1
IP address(es)
[01]: 192.168.100.3
[02]: ae80::1ei9:d52c:6fh3:e191
[02]: Bluetooth Device (Personal Area Network)
Connection Name: Bluetooth Network Connection
Status: Media disconnected
Hyper-V Requirements: VM Monitor Mode Extensions: Yes
Virtualization Enabled In Firmware: Yes
Second Level Address Translation: Yes
Data Execution Prevention Available: Yes
Get BIOS version:
wmic bios get smbiosbiosversion
Will return something like:
SMBIOSBIOSVersion
3703
Other useful commands
You can list the serial number for each drive:
wmic diskdrive get model,SerialNumber
Sources: