Windows Server Update Services (WSUS) Powershell Commands: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 1: | Line 1: | ||
[[Category:Windows]] | |||
==General WSUS Server Maintennace== | ==General WSUS Server Maintennace== | ||
Run all WSUS clean up routines | Run all WSUS clean up routines | ||
Revision as of 16:42, 23 May 2020
General WSUS Server Maintennace
Run all WSUS clean up routines
Get-WsusServer | Invoke-WsusServerCleanup -CleanupObsoleteComputers -CleanupObsoleteUpdates -CleanupUnneededContentFiles -CompressUpdates -DeclineExpiredUpdates -DeclineSupersededUpdates -Confirm:$false
Products Management
Add specific products to be syncronized
Get-WsusProduct -TitleIncludes "SQL" Get-WsusProduct -TitleIncludes "Microsoft SQL Server 2017" | Set-WsusProduct -Verbose
Remove specific product from being syncronized
Get-WsusProduct -TitleIncludes "Microsoft SQL Server 2017" | Set-WsusProduct -Disable -Verbose