# Local Publishing Maximum Cab Size Setting

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()
```

2. 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.

<figure><img src="https://blog.easy2patch.com/wp-content/uploads/2022/11/image.png" alt="" height="178" width="536"><figcaption></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://blog.easy2patch.com/articles/local-publishing-maximum-cab-size-setting.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
