More or less every second Tuesday of every Julian calendar month, Microsoft publishes the latest Windows updates and/or hot fixes. Sometimes they might cause unintended issues or reduce the performance of the business environment. If an issue is traced back to an update or troubleshooting demands to uninstall it, the easiest and fastest way is with the command line.
To know what Microsoft is up to always keep an eye in the update list at:
docs.microsoft.com/en-gb/windows/release-information
With WMIC and WUSA its possible to list and uninstall any update with command line. Check the commands below.
wmic qfe
Lists all the updates
wmic qfe list brief /format:table
List the update in a table format
wusa /uninstall /kb:12345654 /quiet
Replace 12345654 with the KB number. Must be ran as
Admin