Proxy設定の自動検出のON/OFFについて(その2)

 

先般ポストした『Proxy設定の自動検出のON/OFFについて』だけでは対応出来ないケースがありましたので、バッチファイルに追加するべき物を残しておきます。

  • 自動構成スクリプト(http://hoge.local/proxy.pac)を使う
    reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "AutoConfigURL" /t REG_SZ /d "http://hoge.local/proxy.pac" /f
  • 自動構成スクリプトを使わない
    reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "AutoConfigURL" /f
  • プロキシサーバー(proxy.local:12345)を使う
    reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyEnable" /t REG_DWORD /d "1" /f
    reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyServer" /t REG_SZ /d "proxy.local:12345" /f
  • プロキシサーバーを使わない
    reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyEnable" /f
    reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyServer" /f

以上です。