Monday, May 2, 2016

Windows

Proxy 컴맨드 라인으로 설정하기


활성화

> 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 ProxyEnable /t REG_DWORD /d 0 /f

서버 변경

> REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /t REG_SZ /d {ProxyServer}:{ProxyPort} /f



Post a Comment