Powershell: How to display all the hotfixes installed sorted by date Uncategorized Add comments Dec 202020 I needed this in a penetration test and it took me a while to figure it out, while it is actually super simple in powershell: get-hotfix | Sort-Object -Descending -Property InstalledOn -ErrorAction SilentlyContinue Sample output: One Response to “Powershell: How to display all the hotfixes installed sorted by date” Livjot Singh says: 27/09/2022 at 01:23 Get-CimInstance Win32_QuickFixEngineering | sort-object InstalledOn Reply Leave a Reply Cancel reply Your Comment You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> Name (required) E-mail (required) URI Save my name, email, and website in this browser for the next time I comment. Δ
Get-CimInstance Win32_QuickFixEngineering | sort-object InstalledOn