You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How about considering alternative approaches for extracting the list of installed KBs (in addition to using Get-SystemInfo, wmic qfe and the systeminfo command)?
1. WMIC wmic qfe list full /format:table
Gives basically the same output of KBs as systeminfo
2. PowerShell Get-WmiObject -Class "win32_quickfixengineering" | Select-Object -Property "Description", "HotfixID", @{Name="InstalledOn"; Expression={([DateTime]($_.InstalledOn)).ToLocalTime()}}
Is the same as above, but with PowerShell and nicely formatted and with installation time.
3b: Alternative to Client Install History
An easier/shorter alternative to the Client Install History command would be: (Get-Package -Force | Sort-Object Name -Descending).Name
Combining request 2 and 3b would give you a list of all installed KBs
How about considering alternative approaches for extracting the list of installed KBs (in addition to using Get-SystemInfo, wmic qfe and the systeminfo command)?
The "Microsoft Update Client Install History" as described in windows-how-to-list-all-of-the-windows-and-software-updates-applied-to-a-computer looks promising (wrt eliminating more false positives).
The text was updated successfully, but these errors were encountered: