Difference between revisions of "Windows Updates"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
==Removing KBs with PowerShell, PSEXEC, and WUSA== | ==Removing KBs with PowerShell, PSEXEC, and WUSA== | ||
− | <syntaxhighlight> WUSA: wusa.exe /uninstall /kb:1234567 /quiet /norestart | + | <syntaxhighlight>WUSA: wusa.exe /uninstall /kb:1234567 /quiet /norestart |
− | PowerShell: psexec -d -s \\remotemachine wusa.exe /uninstall /kb:1234567 /quiet /norestart </syntaxhighlight> | + | PowerShell: psexec -d -s \\remotemachine wusa.exe /uninstall /kb:1234567 /quiet /norestart</syntaxhighlight> |
Revision as of 23:19, 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>