Bottom Line: You can delete files inside WsusContent, but use caution. WSUS uses this directory to host update binaries for network clients. Deleting files manually without running wsusutil reset can cause update deployment failures.
What is the WsusContent Folder?
Located at C:\WSUS\WsusContent or D:\WSUS\WsusContent on Windows Server instances running Windows Server Update Services (WSUS), this folder stores all downloaded update binaries (.cab, .exe, .msu) before pushing them to local network PCs.
Over months of server updates, old Windows 10, Windows 11, and Office updates accumulate, causing WsusContent to grow to 50 GB to 200 GB+.
Can You Delete WSUS Update Content?
⚠️ Use Caution.
- Client update failures: If clients request updates that were deleted, downloads will fail until WSUS re-downloads them.
- Proper Cleanup: Use the Server Manager WSUS Cleanup Wizard or PowerShell rather than manual File Explorer deletion.
How to Safely Clean Up WSUS Storage
Method 1: WSUS Cleanup Wizard (Recommended)
- Open WSUS Administrative Tools.
- Click Options > Server Cleanup Wizard.
- Select Unneeded update files and click Next.
Method 2: PowerShell Automated Cleanup
Get-WsusServer | Invoke-WsusServerCleanup -CleanupUnneededContentFiles
Method 3: Reset Content Repository (If Manually Purged)
cd "C:\Program Files\Update Services\Tools"
wsusutil.exe reset
Discussion
Loading authentication...