Configurer le proxy MMS
Vérifié avec Windows 11 25H2 — mis à jour le 30 juillet 2026
Pris en charge sur : Windows Server 2003, Windows XP et Windows 2000 uniquement
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 MMS 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. Si le type de proxy Personnalisé est sélectionné, les options restantes de l’onglet Paramètre doivent être spécifiées, sans quoi les paramètres par défaut sont appliqués. Les options sont ignorées si Détection automatique est sélectionné. Le bouton Configurer de l’onglet Réseau du Lecteur n’est pas disponible et le protocole 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é et si l’option Multidiffusion n’est pas sélectionnée. Si vous désactivez ce paramètre de stratégie, le serveur proxy MMS ne peut pas être utilisé et les utilisateurs ne peuvent pas configurer les paramètres de proxy MMS. Si vous ne configurez pas ce paramètre de stratégie, l’utilisateur peut configurer les paramètres de proxy MMS.
Registre
Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\MMS Nom de valeur : ProxyPolicy
Activé : ProxyPolicy = 1
Désactivé : ProxyPolicy = 0
MDM / Intune (CSP)
./User/Vendor/MSFT/Policy/Config/ADMX_WindowsMediaPlayer/ConfigureMMSProxySettings 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 MMS
; State: Enabled
; Supported on: Windows Server 2003, Windows XP et Windows 2000 uniquement
[HKEY_CURRENT_USER\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\MMS]
"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 MMS
# State: Enabled
# Supported on: Windows Server 2003, Windows XP et Windows 2000 uniquement
# 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\MMS'
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/ConfigureMMSProxySettings
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 MMS
# State: Enabled
# Supported on: Windows Server 2003, Windows XP et Windows 2000 uniquement
# 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\MMS' -Name 'ProxyPolicy' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\MMS' -Name 'ProxyType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\MMS' -Name 'ProxyAddress' -Expected '' -Kind String)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\MMS' -Name 'ProxyPort' -Expected 80 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\MMS' -Name 'BypassProxyLocal' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\MMS' -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 MMS
# State: Enabled
# Supported on: Windows Server 2003, Windows XP et Windows 2000 uniquement
# 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\MMS'
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 MMS
# State: Enabled
# Supported on: Windows Server 2003, Windows XP et Windows 2000 uniquement
# 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 MMS
# State: Enabled
# Supported on: Windows Server 2003, Windows XP et Windows 2000 uniquement
# 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\MMS' -Name 'ProxyPolicy' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\MMS' -Name 'ProxyType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\MMS' -Name 'ProxyAddress' -Expected '' -Kind String)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\MMS' -Name 'ProxyPort' -Expected 80 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\MMS' -Name 'BypassProxyLocal' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\MMS' -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 MMS
# State: Enabled
# Supported on: Windows Server 2003, Windows XP et Windows 2000 uniquement
# 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\MMS'
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).