🖥️ Batch (CMD)

Export Physical Memory Modules to CSV (Batch)

Uses wmic to export Physical Memory Modules (Win32_PhysicalMemory) to a timestamped CSV file.

By WindowsScripting.com · 626 B
ExportPhysicalMemoryToCsv.bat
@echo off
:: ============================================================
:: ExportPhysicalMemoryToCsv.bat
::
:: Exports Physical Memory Modules (Win32_PhysicalMemory) to a timestamped CSV file next to
:: this script.
:: ============================================================

setlocal EnableDelayedExpansion
for /f "skip=1 tokens=1-2 delims=." %%a in ('wmic os get localdatetime') do if not defined LDT set LDT=%%a
set "OUTFILE=%~dp0physicalmemory_!LDT:~0,8!-!LDT:~8,6!.csv"

wmic path Win32_PhysicalMemory get BankLabel,Capacity,Speed,Manufacturer /format:csv > "%OUTFILE%"

echo Exported to "%OUTFILE%"
endlocal
pause