ussnorway

Windows Forum Team
Staff member
Premium Supporter
Joined
May 22, 2012
Messages
4,379
ussnorway submitted a new resource:

Crucial (2014) - handy tool to scan a laptop ram slots or hdd

download and run ... it will open a browser page to display your system specs... a handy way to see how many ram slots a laptop has and whats in them now.

Read more about this resource...
 


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