# WSUS Settings

Depending on the license, the SCCM/WSUS/INTUNE button in the ribbon menu is clicked on the Settings screen. WSUS settings are made from the WSUS Settings tab as follows:

1. In the Host address part, the server address of the SUP role is written as FQDN.
2. Select the Use SSL button
3. Enter the Secure Port value configured in WSUS in the Port field. By default it is 8531. But it could be 443 or any other port.
4. The connection test is performed by pressing the test button. If the test is successful, a question about saving the record is asked. Yes is clicked.

WSUS Secure Port is the HTTPS port used by the WSUS server. By default, WSUS uses the Secure Port as 8531.

To verify which port the WSUS server is using, you can follow these steps:

1. On the WSUS server, open IIS Manager.&#x20;
2. In the left-hand panel, expand the "Sites" node and click on the "WSUS Administration" site.&#x20;
3. On the page that opens, click on "Bindings" in the "Actions" section on the right.&#x20;
4. In the window that opens, click the "Edit" button next to the port specified as "https" in the "Type" column.&#x20;
5. In the window that opens, in the "Port" field, you can see the WSUS Secure Port number.&#x20;

By following these steps, you can find out the secure port used by the WSUS server.

## Size limit for WSUS Update Publishing

WSUS server has a maximum size limit. Some update packages may exceed the size limit. When you want to deploy updates larger than 384 MB  You shouldn't do that in general. Updates 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.

You can change the default size limitation in 2 ways.

First method is, you can change the maximum file size from registry. When you run the powershell script, maximum file size for publishing updates in wsus changed to 512 MB. Maximum file size for publishing is 2047 MB.

```powershell
[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 = 512
$config.save()
```

You can change this value easily in Easy2Patch Console. Change Local Publishing Max Size (MB) value to 512 and then click submit button.&#x20;

<figure><img src="/files/G1bscdjnIFDd2XAUBerH" alt=""><figcaption><p>Local Publishing Max Size (MB)</p></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://docs.easy2patch.com/configuring/easy2patch-3.1-settings/sccm-wsus-intune/wsus-settings.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.
