TUTOS.EU

Paramétrer le proxy de Internet Explorer 11 avec des clés de registre

Comment paramétrer les paramètres proxy de Internet Explorer 11 à l'aide de des clés de registre

Pour paramétrer le proxy de Internet Explorer, et pas seulement sur la version 11, posez les clés de registre suivantes (adaptez au besoin) :

REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "MigrateProxy" /t REG_DWORD /d 1 /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyEnable" /t REG_DWORD /d 1 /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyHttp1.1" /t REG_DWORD /d 1 /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyServer" /t REG_SZ /d "192.1.1.1:9999" /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyOverride" /t REG_SZ /d "*.unsite.com;<local>" /f
Lien vers le fichier : cliquez ici Copier le code

Pour faire l'inverse et donc supprimer la configuration du proxy via le registre :

REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "MigrateProxy" /t REG_DWORD /d 0 /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyEnable" /t REG_DWORD /d 0 /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyHttp1.1" /t REG_DWORD /d 0 /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyServer" /t REG_SZ /d "" /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyOverride" /t REG_SZ /d "" /f
Lien vers le fichier : cliquez ici Copier le code

Un exemple de script powershell qui fait une GPO GPO-FR-IE-Proxy-Parameters pour poser les clés de registre pour paramétrer le proxy de IE 11

Set-StrictMode -Version 2
 
# load required modules
Import-Module ActiveDirectory
Import-Module GroupPolicy

#define variables
$GPOName       = 'GPO-FR-IE-Proxy-Parameters'
$defaultNC     = ( [ADSI]"LDAP://RootDSE" ).defaultNamingContext.Value
#$TargetOU      = 'OU=Serveurs,' + $defaultNC
$TargetOU      = $defaultNC

#create new GPO shell
$GPO = New-GPO -Name $GPOName

#Pose d'éléments pour modifier des clés de registre par GPO
Set-GPPrefRegistryValue -Name $GPOName -Action Update -Context User -Key 'HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings' -Type DWord  -ValueName 'MigrateProxy' -Value 1 | out-null
Set-GPPrefRegistryValue -Name $GPOName -Action Update -Context User -Key 'HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings' -Type DWord  -ValueName 'ProxyEnable' -Value 1 | out-null
Set-GPPrefRegistryValue -Name $GPOName -Action Update -Context User -Key 'HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings' -Type DWord  -ValueName 'ProxyHttp1.1' -Value 1 | out-null
Set-GPPrefRegistryValue -Name $GPOName -Action Update -Context User -Key 'HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings' -Type String  -ValueName 'ProxyServer' -Value '192.1.1.1:9999' | out-null
Set-GPPrefRegistryValue -Name $GPOName -Action Update -Context User -Key 'HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings' -Type String  -ValueName 'ProxyOverride' -Value '<local>' | out-null
Lien vers le fichier : cliquez ici Copier le code

Pages Web

Site WebDescription
Support.microsoft.com KB819961Article qui explique comment paramétrer le proxy d'IE avec des clés de registre

2