CodePudding user response:
Powershell WMIC Memorychip command does in fact have the manufacturer and serial number in it, however, it is encrypted data.
From a CMD or PowerShell Window:
wmic memorychip get manufacturer,
wmic memorychip get serialnumber
These are the relevant PowerShell WMIC Commands, where the GET suffix retrieves the specific data from the specific header.
WMIC MEMCACHE,
WMIC MEMORYCHIP,
WMIC MEMPHYSICAL
I am curious if anyone knows how to convert the ID's into a company name as well! Hope this is helpful!

