library/PoshWSUS/2.3.1.6/Scripts/Stop-PSWSUSDownload.ps1
function Stop-PSWSUSDownload { <# .SYNOPSIS Cancels all current WSUS downloads. .DESCRIPTION Cancels all current WSUS downloads. .NOTES Name: Stop-PSWSUSDownload Author: Boe Prox DateCreated: 24SEPT2010 .LINK https://learn-powershell.net .EXAMPLE Stop-PSWSUSDownload Description ----------- This command will stop all updates being downloaded to the WSUS server. #> [cmdletbinding()] Param() Begin { if(-not $wsus) { Write-Warning "Use Connect-PSWSUSServer to establish connection with your Windows Update Server" Break } } Process { #Cancel all downloads running on WSUS If ($pscmdlet.ShouldProcess($($wsus.name))) { $wsus.CancelAllDownloads() "Downloads have been cancelled on {0}." -f $wsus.name } } } |