@echo off
:: ============================================================
:: GetProductReport.bat
::
:: Reports Installed MSI Products via WMI (Win32_Product).
:: ============================================================

wmic path Win32_Product get Name,Version,Vendor,InstallDate /format:table

pause