wmic memorychip list full
wmic memorychip get devicelocator, manufacturer, partnumber, serialnumber, capacity, speed, memorytype, formfactor
wmic memorychip get devicelocator, manufacturer
wmic memorychip get devicelocator, partnumber
wmic memorychip get devicelocator, serialnumber
Quick tip: In the command, you can also replace "devicelocator" with "banklabel" to list the serial number showing the bank's physical label where the memory is located on the motherboard. For example, wmic memorychip get banklabel, serialnumber
wmic memorychip get devicelocator, capacity
Quick tip: The capacity information is displayed in bytes, but you can divide the number by 1,073,741,824 (1 gigabyte in bytes) to convert the data into gigabytes
systeminfo | findstr /C:"Total Physical Memory"
wmic memorychip get devicelocator, speed
wmic memorychip get devicelocator, memorytype
Memory types the command can identify:
0: Unknown.
1: Other.
2: DRAM.
3: Synchronous DRAM.
4: Cache DRAM.
5: EDO.
6: EDRAM.
7: VRAM.
8: SRAM.
9: RAM.
10: ROM.
11: Flash.
12: EEPROM.
13: FEPROM.
14: EPROM.
15: CDRAM.
16: 3DRAM.
17: SDRAM.
18: SGRAM.
19: RDRAM.
20: DDR.
21: DDR2.
22: DDR2 FB-DIMM.
24: DDR3.
25: FBD2.
26: DDR4.
wmic memorychip get devicelocator, formfactor
0: Unknown.
1: Other.
2: SIP.
3: DIP.
4: ZIP.
5: SOJ
6: Proprietary.
7: SIMM.
8: DIMM.
9: TSOP.
10: PGA.
11: RIMM.
12: SODIMM.
13: SRIMM.
14: SMD.
15: SSMP.
16: QFP.
17: TQFP.
18: SOIC.
19: LCC.
20: PLCC.
21: BGA.
22: FPBGA.
23: LGA.
24: FB-DIMM
Source: https://www.windowscentral.com/how-get-full-memory-specs-speed-size-type-part-number-form-factor-windows-10
No comments:
Post a Comment