🖥️ Batch (CMD)

Get Installed Hotfixes Report (Batch)

Uses wmic to list Installed Hotfixes (Win32_QuickFixEngineering) straight from the command line.

By WindowsScripting.com · 350 B
GetQuickFixEngineeringReport.bat
@echo off
:: ============================================================
:: GetQuickFixEngineeringReport.bat
::
:: Reports Installed Hotfixes via WMI (Win32_QuickFixEngineering).
:: ============================================================

wmic path Win32_QuickFixEngineering get HotFixID,Description,InstalledOn,InstalledBy /format:table

pause