Skip to content

Instantly share code, notes, and snippets.

@the-darkvoid
Created February 3, 2015 09:04
Show Gist options
  • Save the-darkvoid/250e795a4cdbdc524100 to your computer and use it in GitHub Desktop.
Save the-darkvoid/250e795a4cdbdc524100 to your computer and use it in GitHub Desktop.
Check memory on Windows

Powershell (Windows 7):

Get-WmiObject CIM_PhysicalMemory | select banklabel,capacity,caption,devicelocator,partnumber | ft -AutoSize

Command Line (Windows 8):

wmic MEMORYCHIP get banklabel, capacity, caption, devicelocator, partnumber
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment