🖥️ Batch (CMD)

Get Physical Memory Modules Report (Batch)

Uses wmic to list Physical Memory Modules (Win32_PhysicalMemory) straight from the command line.

By WindowsScripting.com · 333 B
GetPhysicalMemoryReport.bat
@echo off
:: ============================================================
:: GetPhysicalMemoryReport.bat
::
:: Reports Physical Memory Modules via WMI (Win32_PhysicalMemory).
:: ============================================================

wmic path Win32_PhysicalMemory get BankLabel,Capacity,Speed,Manufacturer /format:table

pause