WSUS & BITS – Foreground Priority Mode vs Background Priority Mode

by | Last updated 2022.10.29 | Published on 2020.01.13 | Guides, WSUS

The default Background Intelligent Transfer Service (BITS) mode for WSUS is background priority mode. As written on Docs,

Unless the job is time critical or the user is actively waiting, you should always use a background priority. However, there are times when you may want to switch from background priority to foreground priority.

 

Set foreground priority mode for BITS, from an administrative PowerShell prompt on the WSUS server:

$Configuration=(Get-WSUSServer).GetConfiguration()
$Configuration.BitsDownloadPriorityForeground=$True
$Configuration.Save()

Set background priority mode for BITS, from an administrative PowerShell prompt on the WSUS server:

$Configuration=(Get-WSUSServer).GetConfiguration()
$Configuration.BitsDownloadPriorityForeground=$False
$Configuration.Save()

Why Would I Need To Use Foreground Priority Mode?

If the WSUS server is behind a firewall or a proxy server and the proxy server environment does not support the HTTP 1.1 range request function, it may have trouble downloading files from Microsoft in background priority mode. If you cannot modify the proxy server to allow the HTTP 1.1 range request function, configure BITS to work in foreground mode.

 

Domain Controller DNS in an Active Directory Environment

Domain Controller DNS in an Active Directory Environment

Proper domain controller DNS setup is vital for Active Directory to work properly. Best practice dictates that each domain controller should be setup with a different DNS server as it's preferred DNS server, and and the loopback address (127.0.0.1) as it's alternate...

Client Machines Not Reporting to WSUS Properly?

Client Machines Not Reporting to WSUS Properly?

WSUS Reporting starts and ends with the Windows Update Agent (WUA) on each individual client. If the client is not reporting properly, it can show up in many different ways. Sometimes it will be obvious (the Last Status Report column is not updating to a recent date)...

WSUS System Requirements – What Should I Plan For?

WSUS System Requirements – What Should I Plan For?

Microsoft's official system requirements are a good starting point, however, they don't give you the full picture. Let's look at this one by one. Processor: 1.4 gigahertz (GHz) x64 processor (2 Ghz or faster is recommended) So, 1.4-2.0 GHz is already in play by pretty...