Resource icon

Crucial (2014) 2016-05-08

Just because I love powershell here are a few commands from a powershell prompt that will get memory and disk information

MEMORY
  • Get-WmiObject -Query 'select * from Win32_PhysicalMemory'
DISK
  • Get-WmiObject -Query 'select * from Win32_DiskDrive'
Of course I'm sure the output isn't as pretty plus there are several other WMI classes you can pull data from and it would be easy to create a powershell script to make it pretty :)
 
Back
Top Bottom