@echo off
:: ============================================================
:: GetEnvironmentReport.bat
::
:: Reports Environment Variables via WMI (Win32_Environment).
:: ============================================================

wmic path Win32_Environment get Name,VariableValue,UserName /format:table

pause