Thursday 25 December 2014

WINDOWS COMMANDS TO EXTRACT HARDWARE INFO

How to extract the hardware information in Windows using commands.

Following commands will list detailed information of RAM

  • wmic MemoryChip get BankLabel, Capacity, MemoryType, TypeDetail, Speed
  • wmic memorychip list full


Following commands will list the total RAM

  • wmic OS get FreePhysicalMemory /Value
  • systeminfo | findstr /C:"Total Physical Memory"


Following command will list all the details of Motherboard

  • wmic baseboard get product,Manufacturer,version,serialnumber

Following command will graphically list all the details of system
  • dxdiag

No comments:

Post a Comment