CMD设置代理 注册表设置IE代理

法一:注册表reg

设置代理

开启代理 并 设置代理地址为127.0.0.1:8080

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000001
"ProxyServer"="127.0.0.1:8080"

开启代理 并 设置代理地址为空

取消代理

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]

"ProxyEnable"=dword:00000000
"ProxyServer"=""

法二:cmd

开启代理 并 设置代理地址为127.0.0.1:8080

@echo off
echo 设置代理
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 "127.0.0.1:8080" /f
echo 完毕

开启代理 并 设置代理地址为空

取消代理

@echo off
echo 取消设置代理
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 ProxyServer /d "" /f
echo 完毕

你可能感兴趣的:(问题解决,cmd,regedit,windows,proxy)