WSUS Cleanup Script
There’s a PowerShell cmdlet in Server 2012 R2 that allows you to run a WSUS cleanup. Here is a script that will perform the cleanup and log the activity:
$log_file = “D:\wsus-cleanup.log”
$result = Get-WsusServer | Invoke-WsusServerCleanup -CleanupObsoleteUpdates -CleanupUnneededContentFiles -CompressUpdates -DeclineExpiredUpdates -DeclineSupersededUpdates
get-date -format g | add-content $log_file
add-content $log_file $result
add-content $log_file “”
$result = $null
This script will cleanup obsolete updates, content files, remove superseded, and remove expired updates. You can add this script as a scheduled task on your WSUS server.
Disclaimer
All content provided on this blog is for information purposes only. Windows Management Experts, Inc makes no representation as to accuracy or completeness of any information on this site. Windows Management Experts, Inc will not be liable for any errors or omission in this information nor for the availability of this information. It is highly recommended that you consult one of our technical consultants, should you need any further assistance.