Skip to content

Instantly share code, notes, and snippets.

@garthk
Created October 22, 2012 05:20
Show Gist options
  • Select an option

  • Save garthk/3929809 to your computer and use it in GitHub Desktop.

Select an option

Save garthk/3929809 to your computer and use it in GitHub Desktop.
Clean up stale Windows Update downloads
@echo on
setlocal
set DAYS=31
set DOWNLOADS=C:\WINDOWS\SoftwareDistribution\Download
rem http://bit.ly/IttCwo
rem http://stackoverflow.com/a/51069/5700
net stop wuauserv
forfiles /p %DOWNLOADS% /s /d -%DAYS% /c "cmd /c if @isdir==FALSE (del @file) else (rd /s /q @file)"
net start wuauserv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment