Difference between revisions of "Windows Updates"

From Max's Wiki
Jump to navigation Jump to search
m (Reverted edits by 148.163.176.250 (talk) to last revision by Max)
Line 1: Line 1:
 +
__FORCETOC__
 
==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 17:48, 8 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>