Configurer une planification des tâches pour limiter la bande passante réseau maximale utilisée pour les transferts BITS en arrière-plan
Vérifié avec Windows 11 25H2 — mis à jour le 30 juillet 2026
Pris en charge sur : Windows 7 ou les ordinateurs sur lesquels BITS 3.5 est installé.
Chemin dans la console GPO
Configuration ordinateur\Modèles d'administration\Réseau\Service de transfert intelligent en arrière-plan (BITS) Description
Ce paramètre de stratégie limite la bande passante réseau maximale utilisée par le service BITS durant les jours et les heures travaillés et non travaillés. La planification des tâches est définie à l’aide d’un calendrier hebdomadaire constitué des jours de la semaine et des heures de la journée. Les heures et les jours non définis dans une planification des tâches sont considérés comme des heures non travaillées. Si vous activez ce paramètre de stratégie, vous pouvez définir une planification permettant de limiter la bande passante réseau durant les heures travaillées et non travaillées. Une fois la planification des tâches définie, vous pouvez configurer les limites d’utilisation de la bande passante pour chacun des trois niveaux de priorité BITS en arrière-plan : haut, normal et bas. Vous pouvez spécifier une limite pour les travaux en arrière-plan lors de la planification d’une tâche. Par exemple, vous pouvez limiter la bande passante réseau des tâches de priorité basse à 128 Kbits/s de 8 h 00 à 17 h 00 du lundi au vendredi, puis définir la limite à 512 Kbits/s pour les heures non travaillées. Si vous désactivez ou ne configurez pas ce paramètre, le service BITS utilise toute la bande passante disponible pour le transfert de tâches en arrière-plan.
Registre
Software\Policies\Microsoft\Windows\BITS\Throttling Nom de valeur : EnableBandwidthLimits
MDM / Intune (CSP)
./Device/Vendor/MSFT/Policy/Config/ADMX_Bits/BITS_MaxBandwidthV2_Work Documentation Microsoft Learn Données de correspondance : Microsoft Learn (CC BY 4.0)
Générateur d'exports
BETAConfigurez l'état, la portée et les options, puis générez les sorties .reg, PowerShell, Intune et SCCM — ou ajoutez le paramètre à une collection multi-paramètres.
Ces exports écrivent le registre — ce n'est pas une GPO managée. ⓘ
Fichier .reg
Windows Registry Editor Version 5.00
; Exported from gporais.com
; Policy: Configurer une planification des tâches pour limiter la bande passante réseau maximale utilisée pour les transferts BITS en arrière-plan
; State: Enabled
; Supported on: Windows 7 ou les ordinateurs sur lesquels BITS 3.5 est installé.
[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\BITS\Throttling]
"EnableBandwidthLimits"=dword:00000001
"IgnoreBandwidthLimitsOnLan"=dword:00000000
"StartDay"=dword:00000001
"EndDay"=dword:00000005
"StartHour"=dword:00000008
"EndHour"=dword:00000011
"HighBandwidthLimit"=dword:00000000
"HighBandwidthType"=dword:00000003
"NormalBandwidthLimit"=dword:00000000
"NormalBandwidthType"=dword:00000003
"LowBandwidthLimit"=dword:00000000
"LowBandwidthType"=dword:00000003
"HighBandwidthLimit"=dword:00000000
"HighBandwidthType"=dword:00000003
"NormalBandwidthLimit"=dword:00000000
"NormalBandwidthType"=dword:00000003
"LowBandwidthLimit"=dword:00000000
"LowBandwidthType"=dword:00000003 Autres formats (PowerShell, Intune, SCCM)
PowerShell
# Exported from gporais.com
# Policy: Configurer une planification des tâches pour limiter la bande passante réseau maximale utilisée pour les transferts BITS en arrière-plan
# State: Enabled
# Supported on: Windows 7 ou les ordinateurs sur lesquels BITS 3.5 est installé.
$path = 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'EnableBandwidthLimits' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'IgnoreBandwidthLimitsOnLan' -Value 0 -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 8 -Type DWord
Set-ItemProperty -Path $path -Name 'EndHour' -Value 17 -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
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 Intune XML
OMA-URI: ./Device/Vendor/MSFT/Policy/Config/ADMX_Bits/BITS_MaxBandwidthV2_Work
Data type: String
Value:
<enabled/>
<data id="BITS_IgnoreLimitsOnLan" value="0"/>
<data id="BITS_WorkDaysFrom" value="1"/>
<data id="BITS_WorkDaysTo" value="5"/>
<data id="BITS_WorkHoursFrom" value="8"/>
<data id="BITS_WorkHoursTo" value="17"/>
<data id="BITS_WorkHighPriorityLimit" value="0"/>
<data id="BITS_WorkHighPriorityUnit" value="3"/>
<data id="BITS_WorkNormalPriorityLimit" value="0"/>
<data id="BITS_WorkNormalPriorityUnit" value="3"/>
<data id="BITS_WorkLowPriorityLimit" value="0"/>
<data id="BITS_WorkLowPriorityUnit" value="3"/>
<data id="BITS_NonWorkHighPriorityLimit" value="0"/>
<data id="BITS_NonWorkHighPriorityUnit" value="3"/>
<data id="BITS_NonWorkNormalPriorityLimit" value="0"/>
<data id="BITS_NonWorkNormalPriorityUnit" value="3"/>
<data id="BITS_NonWorkLowPriorityLimit" value="0"/>
<data id="BITS_NonWorkLowPriorityUnit" value="3"/> Intune Remediation
# === Detection script ===
# Exported from gporais.com
# Policy: Configurer une planification des tâches pour limiter la bande passante réseau maximale utilisée pour les transferts BITS en arrière-plan
# State: Enabled
# Supported on: Windows 7 ou les ordinateurs sur lesquels BITS 3.5 est installé.
function Test-RegistryValue {
param(
[Parameter(Mandatory = $true)][string]$Path,
[Parameter(Mandatory = $true)][string]$Name,
[object]$Expected,
[ValidateSet('String', 'DWord', 'MultiString')][string]$Kind = 'String',
[switch]$Absent
)
try {
$item = Get-ItemProperty -LiteralPath $Path -Name $Name -ErrorAction Stop
} catch {
return $Absent.IsPresent
}
if ($Absent.IsPresent) { return $false }
$actual = $item.$Name
if ($Kind -eq 'DWord') { return ([int64]$actual) -eq ([int64]$Expected) }
if ($Kind -eq 'MultiString') {
$actualValues = @($actual)
$expectedValues = @($Expected)
if ($actualValues.Count -ne $expectedValues.Count) { return $false }
for ($i = 0; $i -lt $expectedValues.Count; $i++) {
if ([string]$actualValues[$i] -ne [string]$expectedValues[$i]) { return $false }
}
return $true
}
return [string]$actual -eq [string]$Expected
}
$checks = @(
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'EnableBandwidthLimits' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'IgnoreBandwidthLimitsOnLan' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'StartDay' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'EndDay' -Expected 5 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'StartHour' -Expected 8 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'EndHour' -Expected 17 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'HighBandwidthLimit' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'HighBandwidthType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'NormalBandwidthLimit' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'NormalBandwidthType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'LowBandwidthLimit' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'LowBandwidthType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'HighBandwidthLimit' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'HighBandwidthType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'NormalBandwidthLimit' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'NormalBandwidthType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'LowBandwidthLimit' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'LowBandwidthType' -Expected 3 -Kind DWord)
)
if ($checks -notcontains $false) {
Write-Output 'Compliant'
exit 0
}
Write-Output 'Non-compliant'
exit 1
# === Remediation script ===
# Exported from gporais.com
# Policy: Configurer une planification des tâches pour limiter la bande passante réseau maximale utilisée pour les transferts BITS en arrière-plan
# State: Enabled
# Supported on: Windows 7 ou les ordinateurs sur lesquels BITS 3.5 est installé.
$path = 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'EnableBandwidthLimits' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'IgnoreBandwidthLimitsOnLan' -Value 0 -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 8 -Type DWord
Set-ItemProperty -Path $path -Name 'EndHour' -Value 17 -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
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 Scripts SCCM
# Exported from gporais.com
# Policy: Configurer une planification des tâches pour limiter la bande passante réseau maximale utilisée pour les transferts BITS en arrière-plan
# State: Enabled
# Supported on: Windows 7 ou les ordinateurs sur lesquels BITS 3.5 est installé.
# SCCM Configuration Item guidance:
# Create a Configuration Item of type "Setting: Script".
# Discovery script: use the Detection script below.
# Remediation script: use the Remediation script below.
# Compliance rule: the Discovery script output equals 'Compliant'.
# === Detection script ===
# Exported from gporais.com
# Policy: Configurer une planification des tâches pour limiter la bande passante réseau maximale utilisée pour les transferts BITS en arrière-plan
# State: Enabled
# Supported on: Windows 7 ou les ordinateurs sur lesquels BITS 3.5 est installé.
function Test-RegistryValue {
param(
[Parameter(Mandatory = $true)][string]$Path,
[Parameter(Mandatory = $true)][string]$Name,
[object]$Expected,
[ValidateSet('String', 'DWord', 'MultiString')][string]$Kind = 'String',
[switch]$Absent
)
try {
$item = Get-ItemProperty -LiteralPath $Path -Name $Name -ErrorAction Stop
} catch {
return $Absent.IsPresent
}
if ($Absent.IsPresent) { return $false }
$actual = $item.$Name
if ($Kind -eq 'DWord') { return ([int64]$actual) -eq ([int64]$Expected) }
if ($Kind -eq 'MultiString') {
$actualValues = @($actual)
$expectedValues = @($Expected)
if ($actualValues.Count -ne $expectedValues.Count) { return $false }
for ($i = 0; $i -lt $expectedValues.Count; $i++) {
if ([string]$actualValues[$i] -ne [string]$expectedValues[$i]) { return $false }
}
return $true
}
return [string]$actual -eq [string]$Expected
}
$checks = @(
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'EnableBandwidthLimits' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'IgnoreBandwidthLimitsOnLan' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'StartDay' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'EndDay' -Expected 5 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'StartHour' -Expected 8 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'EndHour' -Expected 17 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'HighBandwidthLimit' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'HighBandwidthType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'NormalBandwidthLimit' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'NormalBandwidthType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'LowBandwidthLimit' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'LowBandwidthType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'HighBandwidthLimit' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'HighBandwidthType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'NormalBandwidthLimit' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'NormalBandwidthType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'LowBandwidthLimit' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'LowBandwidthType' -Expected 3 -Kind DWord)
)
if ($checks -notcontains $false) {
Write-Output 'Compliant'
exit 0
}
Write-Output 'Non-compliant'
exit 1
# === Remediation script ===
# Exported from gporais.com
# Policy: Configurer une planification des tâches pour limiter la bande passante réseau maximale utilisée pour les transferts BITS en arrière-plan
# State: Enabled
# Supported on: Windows 7 ou les ordinateurs sur lesquels BITS 3.5 est installé.
$path = 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'EnableBandwidthLimits' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'IgnoreBandwidthLimitsOnLan' -Value 0 -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 8 -Type DWord
Set-ItemProperty -Path $path -Name 'EndHour' -Value 17 -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
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 Vous construisez une collection multi-paramètres ? Ajoutez ce paramètre et générez des exports combinés (.reg, PowerShell, GPO).