@echo off
:: ============================================================
:: GetOperatingSystemReport.bat
::
:: Reports Operating System Info via WMI (Win32_OperatingSystem).
:: ============================================================

wmic path Win32_OperatingSystem get Caption,Version,OSArchitecture,LastBootUpTime,FreePhysicalMemory /format:table

pause