Removing Hotfixes And Updates
Tags: windows
View HotFixes
Powershell
Get-Hotfix | Sort-Object -Descending InstalledOn
CMD
wmic qfe list full /format:table
Remove HotFixes
wusa /uninstall /kb:<KB>
Tags: windows
Get-Hotfix | Sort-Object -Descending InstalledOn
wmic qfe list full /format:table
wusa /uninstall /kb:<KB>