w7にはpowershellが付いていますので、
Get-WMIObject Win32_physicalmemory を実行するだけで、搭載しているメモリの詳細が得られます。
---たとえば下記のような情報になります。
装着しているバンクごとに名前、容量、パーツ番号、スピードなどが解ります。
下記はメモリ1枚だけを表示したものです。
__GENUS : 2
__CLASS : Win32_PhysicalMemory
__SUPERCLASS : CIM_PhysicalMemory
__DYNASTY : CIM_ManagedSystemElement
__RELPATH : Win32_PhysicalMemory.Tag="Physical Memory 0"
__PROPERTY_COUNT : 30
__DERIVATION : {CIM_PhysicalMemory, CIM_Chip, CIM_PhysicalComponent, CI
M_PhysicalElement...}
__SERVER :
__NAMESPACE : root\cimv2
__PATH : \\xxxxx\root\cimv2:Win32_PhysicalMemory.Tag="Physical Memory 0"
BankLabel : A1_BANK0
Capacity : 4294967296
Caption : 物理メモリ
CreationClassName : Win32_PhysicalMemory
DataWidth : 64
Description : 物理メモリ
DeviceLocator : A1_DIMM0
FormFactor : 8
HotSwappable :
InstallDate :
InterleaveDataDepth : 0
InterleavePosition : 0
Manufacturer : Undefined
MemoryType : 0
Model :
Name : 物理メモリ
OtherIdentifyingInfo :
PartNumber : CL9-9-9 D3-1333
PositionInRow : 1
PoweredOn :
Removable :
Replaceable :
SerialNumber : 00000000
SKU :
Speed : 1333
Status :
Tag : Physical Memory 0
TotalWidth : 64
TypeDetail : 16512
Version :
PSComputerName : xxxxx
---以上、メモリ1枚のデータでした。
お礼
回答ありがとうございました。