For list the HotFix in your Windows Operating system you could use this command.
COMMAND: " Get-WmiObject Win32_QuickFixEngineering"
COMMAND: Get-WmiObject Win32_QuickFixEngineering Hotfixid | where{$_.hotfixid -like 'KB3029432'}
COMMAND: Get-WmiObject Win32_QuickFixEngineering | where{$_.hotfixid -like 'KB3029432'}
COMMAND: Get-HotFix -computername localhost | Where {$_.InstalledOn -gt "01-28-2025" -AND $_.InstalledOn -le "05-31-2025" } | sort Installedon