# Find out computer make/model number
wmic csproduct get name



# Find out CPU information
wmic cpu get name,CurrentClockSpeed,MaxClockSpeed



# Find out system name/serial number
wmic bios get name,serialnumber,version


I blurred my PCs name our for security reasons... sorry.


# Find out physical disk configuration
wmic diskdrive


Okay, this is hard to read... but it can be read... you just need to scroll up/down a little.


# Find out logical disk configuration
WMIC LOGICALDISK GET Name,Size,FreeSpace


This shows you local drives, as well as, network drives.


# Find out memory configuration
wmic MEMORYCHIP get BankLabel,DeviceLocator,Capacity,Tag