Skip to content

Instantly share code, notes, and snippets.

@snoj
Created December 24, 2014 10:27
Show Gist options
  • Save snoj/298188f165575bd1b926 to your computer and use it in GitHub Desktop.
Save snoj/298188f165575bd1b926 to your computer and use it in GitHub Desktop.
Clear wuauserv SoftwareDistribution folder
Get-Service -DisplayName "Windows Update" | Stop-Service -Force;
rm -force -recurse C:\Windows\SoftwareDistribution -ea silentlycontinue;
Get-Service -DisplayName "Windows Update" | Start-Service;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment