1. ホーム
  2. スクリプト・コラム
  3. DOS/BAT

dosコマンドラインでIEプロキシを設定するコード

2022-02-10 05:21:12

IEプロキシはレジストリで設定できるので、そのためにDOSでレジストリを変更することも可能です。

方法1 レジストリファイル。

REGEDIT4

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000001
"ProxyServer"="192.168.0.1:8088"
"ProxyOverride"="192.168.*"

proxy.regのようなregファイルとして保存し、DOSで以下のようにレジストリにインポートします。
regedit /s proxy.reg

方法2

batスクリプトで処理する

@echo off
echo [Modify IE

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 ProxyServer /d "12.123.12.12:8080" /f

rem "Do not use a proxy server for local addresses" this check, will not be checked
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d "11.*;68.*;10.*;& quot; /f

rem "Do not use a proxy server for local addresses" checkbox, will be checked
::reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d "11.*;68.*;10.*;& lt;local>" /f

このうち、下の2行は説明済みなので、説明は省略します。以下、ご覧の通りです。

最後の文
reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings" /v ProxyOverride /t REG_SZ /d "11.*;68.*;10.*;< ;local>" /f