Local Publishing Maximum Cab Size Setting

Direnc Onen

There is a default limit for CAB files that can be published / created within WSUS Local Publishing. This limit is 384 MB. Therefore, updates larger than 384MB cannot be published over WSUS. However, this limit value may be changed and larger updates may be released. There are several ways to change this setting.

  1. Powershell

$wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer()
$CurrentSize = $wsus.GetConfiguration().LocalPublishingMaxCabSize
Write-host "Current Max Size" $CurrentSize
$config = $wsus.GetConfiguration()
$NewSize = 1024
$config.LocalPublishingMaxCabSize = $NewSize
$config.save()
  1. Easy2Patch

Within Easy2Patch settings there is a field to set the LocalPublishingMaxCabSize value. The "Local Publishing Max Size" value can be changed under {Settings}{SCCM/WSUS}{WSUS Settings}. The value in MB is determined. The maximum value that can be entered in this field will be 2048 MB. For updates distributed with Easy2Patch, a value of 1024 will be sufficient as of the writing date of the article. However, you can increase this area according to your needs.

Last updated