Configurer une planification de maintenance 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 utilisée par le service BITS durant les jours et les heures de maintenance. Les planifications de maintenance limitent encore davantage la bande passante réseau utilisée pour les transferts en arrière-plan. Si vous activez ce paramètre de stratégie, vous pouvez définir un ensemble de limites de bande passante réseau distinct, puis configurer une planification pour la période de maintenance. Vous pouvez spécifier la limite à utiliser pour les tâches en arrière-plan lors de la planification d’une maintenance. Par exemple, si les tâches de priorité normale sont actuellement limitées à 256 Kbits/s dans une planification de tâches, vous pouvez limiter la bande passante réseau des tâches de priorité normale à 0 Kbits/s de 8 h 00 à 10 h 00 dans une planification de maintenance. Si vous désactivez ou ne configurez pas ce paramètre de stratégie, les limites définies pour la planification des tâches et pour les autres planifications sont utilisées. Remarque : les limites de bande passante réseau définies pour la période de maintenance ont priorité sur les limites définies pour la planification des tâches et pour les autres planifications.
Registre
Software\Policies\Microsoft\Windows\BITS\Throttling Nom de valeur : EnableMaintenanceLimits
MDM / Intune (CSP)
./Device/Vendor/MSFT/Policy/Config/ADMX_Bits/BITS_MaxBandwidthV2_Maintenance 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 de maintenance 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]
"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 Autres formats (PowerShell, Intune, SCCM)
PowerShell
# Exported from gporais.com
# Policy: Configurer une planification de maintenance 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 '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 Intune XML
OMA-URI: ./Device/Vendor/MSFT/Policy/Config/ADMX_Bits/BITS_MaxBandwidthV2_Maintenance
Data type: String
Value:
<enabled/>
<data id="BITS_MaintenanceDaysFrom" value="1"/>
<data id="BITS_MaintenanceDaysTo" value="5"/>
<data id="BITS_MaintenanceHoursFrom" value="20"/>
<data id="BITS_MaintenanceHoursTo" value="22"/>
<data id="BITS_MaintenanceHighPriorityLimit" value="0"/>
<data id="BITS_MaintenanceHighPriorityUnit" value="3"/>
<data id="BITS_MaintenanceNormalPriorityLimit" value="0"/>
<data id="BITS_MaintenanceNormalPriorityUnit" value="3"/>
<data id="BITS_MaintenanceLowPriorityLimit" value="0"/>
<data id="BITS_MaintenanceLowPriorityUnit" value="3"/> Intune Remediation
# === Detection script ===
# Exported from gporais.com
# Policy: Configurer une planification de maintenance 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 'EnableMaintenanceLimits' -Expected 1 -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 20 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'EndHour' -Expected 22 -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 de maintenance 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 '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 Scripts SCCM
# Exported from gporais.com
# Policy: Configurer une planification de maintenance 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 de maintenance 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 'EnableMaintenanceLimits' -Expected 1 -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 20 -Kind DWord)
(Test-RegistryValue -Path 'HKLM:\Software\Policies\Microsoft\Windows\BITS\Throttling' -Name 'EndHour' -Expected 22 -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 de maintenance 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 '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 Vous construisez une collection multi-paramètres ? Ajoutez ce paramètre et générez des exports combinés (.reg, PowerShell, GPO).