简体   繁体   中英

How to set proxy from command line Windows 7

I need to set a proxy using command line in windows .

Have you any idea about the commands to execute ?

Thank you in advance .

For me neither the above in the previous answer neither what suggested here (that is quite the same, only explained a bit better).

What instead has worked so far, and only for the session, is this command:

(New-Object System.Net.WebClient).Proxy.Credentials =  
[System.Net.CredentialCache]::DefaultNetworkCredentials

as from really well explained here

Then I was able to retrieve web content as for example:

Invoke-WebRequest http://example.org

I believe it is a possible duplicate of https://superuser.com/questions/419696/in-windows-7-how-to-change-proxy-settings-from-command-line

There is a command named set proxy. See the following:

set HTTP_PROXY=http://user:password@proxy.domain.com:port

Using netsh

netsh winhttp set proxy  [proxy server address:port number] [bypass list]

Also see the following:

http://www.ehow.com/how_6887864_do-proxy-settings-command-prompt_.html

https://superuser.com/questions/337685/how-do-i-change-the-windows7-lan-proxy-config-from-the-command-line

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM