🖥️ Batch (CMD)
Get Installed MSI Products Report (Batch)
Uses wmic to list Installed MSI Products (Win32_Product) straight from the command line.
GetProductReport.bat
@echo off
:: ============================================================
:: GetProductReport.bat
::
:: Reports Installed MSI Products via WMI (Win32_Product).
:: ============================================================
wmic path Win32_Product get Name,Version,Vendor,InstallDate /format:table
pause