Difference between revisions of "Windows Updates"

From Max's Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
 
__FORCETOC__
 
__FORCETOC__
 
==Removing KBs with PowerShell, PSEXEC, and WUSA==
 
==Removing KBs with PowerShell, PSEXEC, and WUSA==
<syntaxhighlight>WUSA: wusa.exe /uninstall /kb:1234567 /quiet /norestart
+
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
 +
 
 +
==Windows 7 Low Disk Space==
 +
https://pserranne.wordpress.com/tag/wicleanup/

Latest revision as of 18:29, 26 June 2017

Removing KBs with PowerShell, PSEXEC, and WUSA

WUSA: wusa.exe /uninstall /kb:1234567 /quiet /norestart
PowerShell: psexec -d -s \\remotemachine wusa.exe /uninstall /kb:1234567 /quiet /norestart

Windows 7 Low Disk Space

https://pserranne.wordpress.com/tag/wicleanup/