Share via


vs community 2017 - proxy settings

Question

Wednesday, July 18, 2018 3:40 PM

Hi. how I configure these proxy settings in file devenv.exe.config, for my visual studio 2017?

server: 10.XX.2.X

port: 31X8

user: michel

password: examplepass

<defaultProxy useDefaultCredentials="true" enabled="true">          ???????????
</defaultProxy>

thanks

All replies (1)

Wednesday, July 25, 2018 9:40 AM

Hi,

If you want to use your default credentials with your proxy, you can perform the following actions:

1.Find devenv.exe.config (the devenv.exe configuration file) in: %ProgramFiles(x86)%\Microsoft Visual Studio\2017\community\Common7\IDE.

2.In the configuration file, find the <system.net> block, and then add this code:

<defaultProxy enabled="true" useDefaultCredentials="true">

    <proxy bypassonlocal="True" proxyaddress=" HYPERLINK "http://<yourproxy:port#>" http://<yourproxy:port#>"/>

</defaultProxy>

You must insert the correct proxy address for your network in proxyaddress="<http://<yourproxy:port#>.

/en-us/visualstudio/install/troubleshooting-network-related-errors-in-visual-studio

Best regards,

Joyce

Please remember to click "Mark as Answer" the responses that resolved your issue, and to click "Unmark as Answer" if not. This can be beneficial to other community members reading this thread. If you have any compliments or complaints to MSDN Support, feel free to contact [email protected].