-
Notifications
You must be signed in to change notification settings - Fork 256
Home
应元东 edited this page Oct 6, 2015
·
1 revision
Welcome to the WGestures wiki!
@echo off Setlocal enabledelayedexpansion for /f "skip=2 delims=: tokens=1,*" %%i in ('reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable') do ( set ProxyEnable=%%j ) if "!ProxyEnable!"==" 0x1" ( reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f echo 已关闭代理 ) else ( reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f echo 已开启代理 ) pause>nul