🖥️ Batch (CMD)

Get Installed MSI Products Report (Batch)

Uses wmic to list Installed MSI Products (Win32_Product) straight from the command line.

By WindowsScripting.com · 305 B
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