A new Flexera Community experience is coming on November 18th, click here for more information.
WSUS server has a maximum size limit and sometimes the update package may exceed the size limit if you try something drastic such as publishing the entire MS Office in a custom package through SVM. You shouldn't do that in general. This article will help you tackle such problems and achieve advanced setup.
Update can't be published to the WSUS server due to the locally published packages size limit.
The WSUS package size limit is 382 MB by default.
Login to your WSUS server and then run the Powershell console as an administrator. Run the below commands one by one to change the locally published package size limit to 1024 MB.
Powershell commands:
[reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration")
$wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer()
$size = $wsus.GetConfiguration().LocalPublishingMaxCabSize
Write-host "Current Max Size" $size
$config = $wsus.GetConfiguration()
$config.LocalPublishingMaxCabSize = 1024
$config.save()
This will change the size of the locally published package to 1024 MB from 384 MB.
Afterward, larger packages will publish successfully.
on Feb 08, 2019 12:21 AM - edited on Sep 25, 2019 06:29 PM by RDanailov
Do you have an accompanying script that will display the current size limit? I think that would be helpful before blindly changing this setting.