How do to uninstall windows updates, from a prompt or PS in Hyper-V server?

136,300

Solution 1

To obtain a list of installed patches you can do:

wmic qfe list

To uninstall a listed patch, you do:

wusa /uninstall /kb:<kbnumber>

Here are some links with more information: http://www.systemcentercentral.com/BlogDetails/tabid/143/indexid/57960/Default.aspx http://support.microsoft.com/kb/934307
http://technet.microsoft.com/en-us/library/dd883262(WS.10).aspx

Note: the 934307 KB article says that you can't use /uninstall on Windows 2008 - this does not apply to Windows 2008 R2 - they enabled the uninstall switch on R2 (see the last link).

Solution 2

Since I just ran into this, and it's not clear from the documentation, when using wusa /uninstall /kb:<kb number> make sure you're using the actual number from the KB, not the number and the KB.

Wrong: wusa /uninstall /kb:KB123456

Right: wusa /uninstall /kb:123456

Solution 3

And to do it from a remote computer : wmic /node:SRVNAME process call create "powershell wusa /uninstall /kb:2639043 /quiet /norestart"

and wusa /? to have more information on parameters

Share:
136,300

Related videos on Youtube

DanBig
Author by

DanBig

Updated on September 17, 2022

Comments

  • DanBig
    DanBig almost 2 years

    I'm having an issue on my server when working with my VM guests, and I think its due to a recently installed update. What is the correct command to uninstall Windows Updates from either the command prompt, or Powershell?

  • bjoster
    bjoster about 4 years
    Try to explain your command a bit,
  • Rich M
    Rich M over 2 years
    Or to retrieve the list of installed patched in PowerShell: Get-Hotfix
  • Rich M
    Rich M over 2 years
    PS command is Get-Hotfix