Check - Unistall updates Windows 10 installed
redhcp

redhcp @redhcp

About: ☕Coffee - 💻Tech - 🏍Travel Lover - 🕊@Th3Ces4r

Location:
127.0.0.1
Joined:
Nov 11, 2020

Check - Unistall updates Windows 10 installed

Publish Date: Jan 10 '22
4 0

CMD

wmic qfe list brief /format:table  # list installed updates 

wusa /uninstall /kb:5003637 # unistall NUMBER update
Enter fullscreen mode Exit fullscreen mode

Powershell

get-wmiobject -class win32_quickfixengineering  #list installed

Install-Module PSWindowsUpdate

Get-WUHistory | Select-Object -First 20

Remove-WindowsUpdate -KBArticleID KB5003637
Enter fullscreen mode Exit fullscreen mode

Comments 0 total

    Add comment