Configurer le proxy RTSP
Vérifié avec Windows 11 25H2 — mis à jour le 30 juillet 2026
Pris en charge sur : Lecteur Windows Media Série 9 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 RTSP 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é. Si vous désactivez ce paramètre de stratégie, le serveur proxy RTSP ne peut pas être utilisé et les utilisateurs ne peuvent pas configurer les paramètres de proxy RTSP. Si vous ne configurez pas ce paramètre de stratégie, l’utilisateur peut configurer les paramètres de proxy RTSP.
Registre
Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\RTSP Nom de valeur : ProxyPolicy
Activé : ProxyPolicy = 1
Désactivé : ProxyPolicy = 0
MDM / Intune (CSP)
./User/Vendor/MSFT/Policy/Config/ADMX_WindowsMediaPlayer/ConfigureRTSPProxySettings 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 RTSP
; State: Enabled
; Supported on: Lecteur Windows Media Série 9 et version ultérieure.
[HKEY_CURRENT_USER\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\RTSP]
"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 RTSP
# State: Enabled
# Supported on: Lecteur Windows Media Série 9 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\RTSP'
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/ConfigureRTSPProxySettings
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 RTSP
# State: Enabled
# Supported on: Lecteur Windows Media Série 9 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\RTSP' -Name 'ProxyPolicy' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\RTSP' -Name 'ProxyType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\RTSP' -Name 'ProxyAddress' -Expected '' -Kind String)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\RTSP' -Name 'ProxyPort' -Expected 80 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\RTSP' -Name 'BypassProxyLocal' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\RTSP' -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 RTSP
# State: Enabled
# Supported on: Lecteur Windows Media Série 9 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\RTSP'
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 RTSP
# State: Enabled
# Supported on: Lecteur Windows Media Série 9 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 RTSP
# State: Enabled
# Supported on: Lecteur Windows Media Série 9 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\RTSP' -Name 'ProxyPolicy' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\RTSP' -Name 'ProxyType' -Expected 3 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\RTSP' -Name 'ProxyAddress' -Expected '' -Kind String)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\RTSP' -Name 'ProxyPort' -Expected 80 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\RTSP' -Name 'BypassProxyLocal' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMediaPlayer\Protocols\RTSP' -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 RTSP
# State: Enabled
# Supported on: Lecteur Windows Media Série 9 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\RTSP'
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).