Check - Unistall updates Windows 10 installed
redhcp
Posted on January 10, 2022
CMD
wmic qfe list brief /format:table # list installed updates
wusa /uninstall /kb:5003637 # unistall NUMBER update
Powershell
get-wmiobject -class win32_quickfixengineering #list installed
Install-Module PSWindowsUpdate
Get-WUHistory | Select-Object -First 20
Remove-WindowsUpdate -KBArticleID KB5003637
💖 💪 🙅 🚩
redhcp
Posted on January 10, 2022
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.