Proxy Switch con un file batch

In questo articolo vediamo un semplicissimo Proxy Switcher fatto in batch, che fa On/Off del proxy di Windows. Selezionate il seguente codice e incollatelo in un file di testo e cambiatene l’estensione da .txt a .bat: @echo off SETLOCAL SET key=”HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings” SET value=”http=proxy-url:port;https=proxy-url:port;ftp=proxy-url:port;socks=proxy-url:port;” SET bypass=”*.google.com;*.fbcdn.net;*.googleapis.com;<local>” FOR /f “tokens=2* skip=2” %%a IN (‘reg query %key% /v ProxyEnable’)…

Read More