Difference between revisions of "Windows Updates"
Jump to navigation
Jump to search
(Created page with "==Removing KBs with PowerShell, PSEXEC, and WUSA== * <syntaxhighlight> WUSA - wusa.exe /uninstall /kb:1234567 /quiet /norestart </syntaxhighlight> * <syntaxhighlight> psexec -...") |
|||
Line 1: | Line 1: | ||
==Removing KBs with PowerShell, PSEXEC, and WUSA== | ==Removing KBs with PowerShell, PSEXEC, and WUSA== | ||
− | * <syntaxhighlight> WUSA | + | * <syntaxhighlight> WUSA: wusa.exe /uninstall /kb:1234567 /quiet /norestart |
− | * | + | * PowerShell: psexec -d -s \\remotemachine wusa.exe /uninstall /kb:1234567 /quiet /norestart </syntaxhighlight> |
Revision as of 23:18, 3 June 2016
Removing KBs with PowerShell, PSEXEC, and WUSA
- <syntaxhighlight> WUSA: wusa.exe /uninstall /kb:1234567 /quiet /norestart
- PowerShell: psexec -d -s \\remotemachine wusa.exe /uninstall /kb:1234567 /quiet /norestart </syntaxhighlight>