Set proxy through windows command line including login parameters

后端 未结 4 1878
离开以前
离开以前 2021-01-30 03:41

I want to set a proxy throught the command line, first thing I found out is that you have to run command line with administrator rights - then the basic proxy s

4条回答
  •  别那么骄傲
    2021-01-30 04:09

    cmd

    Tunnel all your internet traffic through a socks proxy:

    netsh winhttp set proxy proxy-server="socks=localhost:9090" bypass-list="localhost"
    

    View the current proxy settings:

    netsh winhttp show proxy
    

    Clear all proxy settings:

    netsh winhttp reset proxy
    

提交回复
热议问题