Windows:IEのプロキシ設定はどこにある?

posted on 2005年4月15日 21:58 投稿者 Elfaria

IEのプロキシ設定は、レジストリにあります。

場所は、「HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings」 になります。
その中の、値ですが。

プロキシが有効か無効かは、ProxyEnable です。
0が無効で、1が有効。DWORD値になっています。

プロキシのアドレスは、ProxyServer です。
文字列(REG_SZ)値になっていて、書式は "192.168.1.254:8080" のような感じです。

ちなみにユーザーエージェントは、User Agent という値です。
これも同じように文字列値になっています。
私の環境だと、"Mozilla/4.0 (compatible; MSIE 6.0; Win32)" ってな感じです。

エクスポートしてみると、こんな感じです。
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"User Agent"="Mozilla/4.0 (compatible; MSIE 6.0; Win32)"
"IE5_UA_Backup_Flag"="5.0"
"NoNetAutodial"=dword:00000000
"MigrateProxy"=dword:00000001
"EmailName"="IEUser@"
"AutoConfigProxy"="wininet.dll"
"MimeExclusionListForCache"="multipart/mixed multipart/x-mixed-replace multipart/x-byteranges "
"WarnOnPost"=hex:01,00,00,00
"UseSchannelDirectly"=hex:01,00,00,00
"EnableHttp1_1"=dword:00000001
"EnableAutodial"=dword:00000000
"ProxyEnable"=dword:00000000
"GlobalUserOffline"=dword:00000000
"PrivacyAdvanced"=dword:00000000
"PrivDiscUiShown"=dword:00000001
"ProxyHttp1.1"=dword:00000000
"SecureProtocols"=dword:00000028
"CertificateRevocation"=dword:00000000
"WarnOnPostRedirect"=dword:00000001
"DisableCachingOfSSLPages"=dword:00000000
"EnableNegotiate"=dword:00000000
"WarnonZoneCrossing"=dword:00000000
"WarnonBadCertRecving"=dword:00000001
"UrlEncoding"=dword:00000000
"ProxyServer"="192.168.0.254:8080"

コメント