Skip to content

Instantly share code, notes, and snippets.

@RIKIKU
Last active August 31, 2017 00:26
Show Gist options
  • Save RIKIKU/bf609de409377c66b2bd7af635d46bf2 to your computer and use it in GitHub Desktop.
Save RIKIKU/bf609de409377c66b2bd7af635d46bf2 to your computer and use it in GitHub Desktop.
Cleans the Windows Update download directory.
stop-service wuauserv -ErrorAction Stop
Get-ChildItem "$env:windir\SoftwareDistribution" | Remove-Item -Recurse -Force
start-service wuauserv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment