Configurer le proxy HTTP
Vérifié avec Windows 11 25H2 — mis à jour le 30 juillet 2026
Pris en charge sur : Lecteur Windows Media pour Windows XP et version ultérieure.
Chemin dans la console GPO
Configuration utilisateur\Modèles d'administration\Composants Windows\Lecteur Windows Media\Mise en réseau Description
Ce paramètre de stratégie permet de spécifier les paramètres de proxy HTTP pour le Lecteur Windows Media. Si vous activez ce paramètre de stratégie, sélectionnez l’un des types de proxy suivants : - Détection automatique : les paramètres de proxy sont détectés automatiquement. - Personnalisé : des paramètres de proxy uniques sont utilisés. - Utiliser les paramètres de proxy du navigateur : les paramètres de proxy du navigateur sont utilisés. Si le type de proxy Personnalisé est sélectionné, les autres options de l’onglet Paramètre doivent être spécifiées, car aucun paramètre par défaut n’est utilisé pour le proxy. Les options sont ignorées si Détection automatique ou Utiliser les paramètres de proxy du navigateur est sélectionné. Le bouton Configurer de l’onglet Réseau du Lecteur n’est pas disponible pour le protocole HTTP et le proxy ne peut pas être configuré. Si le paramètre de stratégie « Masquer l’onglet Réseau » est également activé, l’onglet Réseau est entièrement masqué. Ce paramètre de stratégie est ignoré si le paramètre de stratégie « Protocoles de diffusion multimédia en continu » est activée et si le protocole HTTP n’est pas sélectionné. Si vous désactivez ce paramètre de stratégie, le serveur proxy HTTP ne peut pas être utilisé et les utilisateurs ne peuvent pas configurer le proxy HTTP. Si vous ne configurez pas ce paramètre de stratégie, l’utilisateur peut configurer les paramètres de proxy HTTP.
Registre
Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP Nom de valeur : ProxyPolicy
Activé : ProxyPolicy = 1
Désactivé : ProxyPolicy = 0
MDM / Intune (CSP)
./User/Vendor/MSFT/Policy/Config/ADMX_WindowsMediaPlayer/ConfigureHTTPProxySettings 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 le proxy HTTP
; State: Enabled
; Supported on: Lecteur Windows Media pour Windows XP et version ultérieure.
[HKEY_CURRENT_USER\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP]
"ProxyPolicy"=dword:00000001
"ProxyType"=dword:00000003
"ProxyAddress"=""
"ProxyPort"=dword:00000050
"BypassProxyLocal"=dword:00000000
"ExludeFromProxy"="" Autres formats (PowerShell, Intune, SCCM)
PowerShell
# Exported from gporais.com
# Policy: Configurer le proxy HTTP
# State: Enabled
# Supported on: Lecteur Windows Media pour Windows XP et version ultérieure.
# Warning: In SYSTEM context (the Intune default), HKCU targets the SYSTEM profile. Run this script using the logged-on credentials.
$path = 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'ProxyPolicy' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'ProxyType' -Value 3 -Type DWord
Set-ItemProperty -Path $path -Name 'ProxyAddress' -Value '' -Type String
Set-ItemProperty -Path $path -Name 'ProxyPort' -Value 80 -Type DWord
Set-ItemProperty -Path $path -Name 'BypassProxyLocal' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'ExludeFromProxy' -Value '' -Type String Intune XML
OMA-URI: ./User/Vendor/MSFT/Policy/Config/ADMX_WindowsMediaPlayer/ConfigureHTTPProxySettings
Data type: String
Value:
<enabled/>
<data id="Proxytype" value="3"/>
<data id="ProxyAddress" value=""/>
<data id="ProxyPort" value="80"/>
<data id="BypassProxyLocal" value="0"/>
<data id="DoNotUseProxyLocal" value=""/> Intune Remediation
# === Detection script ===
# Exported from gporais.com
# Policy: Configurer le proxy HTTP
# State: Enabled
# Supported on: Lecteur Windows Media pour Windows XP et version ultérieure.
# Warning: In SYSTEM context (the Intune default), HKCU targets the SYSTEM profile. Run this script using the logged-on credentials.
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 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP' -Name 'ProxyPolicy' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP' -Name 'ProxyType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP' -Name 'ProxyAddress' -Expected '' -Kind String)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP' -Name 'ProxyPort' -Expected 80 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP' -Name 'BypassProxyLocal' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP' -Name 'ExludeFromProxy' -Expected '' -Kind String)
)
if ($checks -notcontains $false) {
Write-Output 'Compliant'
exit 0
}
Write-Output 'Non-compliant'
exit 1
# === Remediation script ===
# Exported from gporais.com
# Policy: Configurer le proxy HTTP
# State: Enabled
# Supported on: Lecteur Windows Media pour Windows XP et version ultérieure.
# Warning: In SYSTEM context (the Intune default), HKCU targets the SYSTEM profile. Run this script using the logged-on credentials.
$path = 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'ProxyPolicy' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'ProxyType' -Value 3 -Type DWord
Set-ItemProperty -Path $path -Name 'ProxyAddress' -Value '' -Type String
Set-ItemProperty -Path $path -Name 'ProxyPort' -Value 80 -Type DWord
Set-ItemProperty -Path $path -Name 'BypassProxyLocal' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'ExludeFromProxy' -Value '' -Type String Scripts SCCM
# Exported from gporais.com
# Policy: Configurer le proxy HTTP
# State: Enabled
# Supported on: Lecteur Windows Media pour Windows XP et version ultérieure.
# 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 le proxy HTTP
# State: Enabled
# Supported on: Lecteur Windows Media pour Windows XP et version ultérieure.
# Warning: In SYSTEM context (the Intune default), HKCU targets the SYSTEM profile. Run this script using the logged-on credentials.
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 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP' -Name 'ProxyPolicy' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP' -Name 'ProxyType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP' -Name 'ProxyAddress' -Expected '' -Kind String)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP' -Name 'ProxyPort' -Expected 80 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP' -Name 'BypassProxyLocal' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP' -Name 'ExludeFromProxy' -Expected '' -Kind String)
)
if ($checks -notcontains $false) {
Write-Output 'Compliant'
exit 0
}
Write-Output 'Non-compliant'
exit 1
# === Remediation script ===
# Exported from gporais.com
# Policy: Configurer le proxy HTTP
# State: Enabled
# Supported on: Lecteur Windows Media pour Windows XP et version ultérieure.
# Warning: In SYSTEM context (the Intune default), HKCU targets the SYSTEM profile. Run this script using the logged-on credentials.
$path = 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\HTTP'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'ProxyPolicy' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'ProxyType' -Value 3 -Type DWord
Set-ItemProperty -Path $path -Name 'ProxyAddress' -Value '' -Type String
Set-ItemProperty -Path $path -Name 'ProxyPort' -Value 80 -Type DWord
Set-ItemProperty -Path $path -Name 'BypassProxyLocal' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'ExludeFromProxy' -Value '' -Type String Vous construisez une collection multi-paramètres ? Ajoutez ce paramètre et générez des exports combinés (.reg, PowerShell, GPO).