en-US windows computer

Set up a maintenance schedule to limit the maximum network bandwidth used for BITS background transfers

Verified with Windows 11 25H2 — updated on July 30, 2026

Windows 11 25H2

Supported on: Windows 7 or computers with BITS 3.5 installed.

Path in the GPO console

Computer Configuration\Administrative Templates\Network\Background Intelligent Transfer Service (BITS)

Description

This policy setting limits the network bandwidth that Background Intelligent Transfer Service (BITS) uses for background transfers during the maintenance days and hours. Maintenance schedules further limit the network bandwidth that is used for background transfers. If you enable this policy setting, you can define a separate set of network bandwidth limits and set up a schedule for the maintenance period. You can specify a limit to use for background jobs during a maintenance schedule. For example, if normal priority jobs are currently limited to 256 Kbps on a work schedule, you can further limit the network bandwidth of normal priority jobs to 0 Kbps from 8:00 A.M. to 10:00 A.M. on a maintenance schedule. If you disable or do not configure this policy setting, the limits defined for work or nonwork schedules will be used. Note: The bandwidth limits that are set for the maintenance period supersede any limits defined for work and other schedules.

Registry

HKLM Software\Policies\Microsoft\Windows\BITS\Throttling

Value name: EnableMaintenanceLimits

More options available

Options

From
StartDay enum
  • Sunday -> 0
  • Monday -> 1 (default)
  • Tuesday -> 2
  • Wednesday -> 3
  • Thursday -> 4
  • Friday -> 5
  • Saturday -> 6
To
EndDay enum
  • Sunday -> 0
  • Monday -> 1
  • Tuesday -> 2
  • Wednesday -> 3
  • Thursday -> 4
  • Friday -> 5 (default)
  • Saturday -> 6
From
StartHour enum
  • 12 AM -> 0
  • 1 AM -> 1
  • 2 AM -> 2
  • 3 AM -> 3
  • 4 AM -> 4
  • 5 AM -> 5
  • 6 AM -> 6
  • 7 AM -> 7
  • 8 AM -> 8
  • 9 AM -> 9
  • 10 AM -> 10
  • 11 AM -> 11
  • 12 PM -> 12
  • 1 PM -> 13
  • 2 PM -> 14
  • 3 PM -> 15
  • 4 PM -> 16
  • 5 PM -> 17
  • 6 PM -> 18
  • 7 PM -> 19
  • 8 PM -> 20 (default)
  • 9 PM -> 21
  • 10 PM -> 22
  • 11 PM -> 23
To
EndHour enum
  • 12 AM -> 0
  • 1 AM -> 1
  • 2 AM -> 2
  • 3 AM -> 3
  • 4 AM -> 4
  • 5 AM -> 5
  • 6 AM -> 6
  • 7 AM -> 7
  • 8 AM -> 8
  • 9 AM -> 9
  • 10 AM -> 10
  • 11 AM -> 11
  • 12 PM -> 12
  • 1 PM -> 13
  • 2 PM -> 14
  • 3 PM -> 15
  • 4 PM -> 16
  • 5 PM -> 17
  • 6 PM -> 18
  • 7 PM -> 19
  • 8 PM -> 20
  • 9 PM -> 21
  • 10 PM -> 22 (default)
  • 11 PM -> 23
High Priority Limit:
HighBandwidthLimit decimal - range 0-4294967200 - default: 0
High Priority Unit:
HighBandwidthType enum
  • Kbps -> 1
  • Mbps -> 2
  • Unlimited -> 3 (default)
Normal Priority Limit:
NormalBandwidthLimit decimal - range 0-4294967200 - default: 0
Normal Priority Unit:
NormalBandwidthType enum
  • Kbps -> 1
  • Mbps -> 2
  • Unlimited -> 3 (default)
Low Priority Limit:
LowBandwidthLimit decimal - range 0-4294967200 - default: 0
Low Priority Unit:
LowBandwidthType enum
  • Kbps -> 1
  • Mbps -> 2
  • Unlimited -> 3 (default)

MDM / Intune (CSP)

./Device/Vendor/MSFT/Policy/Config/ADMX_Bits/BITS_MaxBandwidthV2_Maintenance
Device Since Windows 10, version 2004 with KB5005101 [10.0.19041.1202] and later | Windows 10, version 20H2 with KB5005101 [10.0.19042.1202] and later | Windows 10, version 21H1 with KB5005101 [10.0.19043.1202] and later | Windows 11, version 21H2 [10.0.22000] and later Official mapping (Microsoft Learn)

Microsoft Learn documentation Mapping data: Microsoft Learn (CC BY 4.0)

Export Builder

BETA

Configure the state, scope and options, then generate .reg, PowerShell, Intune and SCCM outputs — or add the setting to a multi-setting collection.

These exports write the registry — this is not a managed GPO.

.reg file

Windows Registry Editor Version 5.00

; Exported from gporais.com
; Policy: Set up a maintenance schedule to limit the maximum network bandwidth used for BITS background transfers
; State: Enabled
; Supported on: Windows 7 or computers with BITS 3.5 installed.

[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\BITS\Throttling]
"EnableMaintenanceLimits"=dword:00000001
"StartDay"=dword:00000001
"EndDay"=dword:00000005
"StartHour"=dword:00000014
"EndHour"=dword:00000016
"HighBandwidthLimit"=dword:00000000
"HighBandwidthType"=dword:00000003
"NormalBandwidthLimit"=dword:00000000
"NormalBandwidthType"=dword:00000003
"LowBandwidthLimit"=dword:00000000
"LowBandwidthType"=dword:00000003
More formats (PowerShell, Intune, SCCM)

PowerShell

# Exported from gporais.com
# Policy: Set up a maintenance schedule to limit the maximum network bandwidth used for BITS background transfers
# State: Enabled
# Supported on: Windows 7 or computers with BITS 3.5 installed.

$path = 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'EnableMaintenanceLimits' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'StartDay' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'EndDay' -Value 5 -Type DWord
Set-ItemProperty -Path $path -Name 'StartHour' -Value 20 -Type DWord
Set-ItemProperty -Path $path -Name 'EndHour' -Value 22 -Type DWord
Set-ItemProperty -Path $path -Name 'HighBandwidthLimit' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'HighBandwidthType' -Value 3 -Type DWord
Set-ItemProperty -Path $path -Name 'NormalBandwidthLimit' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'NormalBandwidthType' -Value 3 -Type DWord
Set-ItemProperty -Path $path -Name 'LowBandwidthLimit' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'LowBandwidthType' -Value 3 -Type DWord

Building a multi-setting collection? Add this setting and generate combined .reg / PowerShell / GPO scripts.

Open the Builder

Embed this policy on your site

What to embed
Theme

Adds one script line: the theme follows your site’s appearance and the height fits the content. If your site blocks scripts, the embed follows the visitor’s system theme.

Preview