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.

 

Externally Facing WSUS Servers

Externally Facing WSUS Servers

Take the following questions into consideration: How can we solve the problem with controlling updates and reporting both internally and externally using WSUS? How do we make sure that all of our client systems receive updates whether they are inside or outside the...

How to Migrate or Upgrade WSUS

How to Migrate or Upgrade WSUS

There are 3 different types of ways to upgrade WSUS. Install the new Server OS, install the WSUS role synchronizing with Microsoft Update, creating your groups, adjusting your settings, and then changing your GPOs over to the new server. An In-place upgrade of the...

What do I do when I run out of space on a WSUS Server?

What do I do when I run out of space on a WSUS Server?

Oops! Doh! Huh? %#@*!!! These are all the words you think of in your head when you're investigating what is happening with your WSUS server and realize that WSUS just ate all of your disk space and there is 0 bytes free. What do you do next? If WSUS was downloading...