If it does exist, edit this section as appropriate. If it does not exist, add the following text as the second line from the end (</configuration>) and substitute the proxy address as appropriate for the environment:
<system.net>
<defaultProxy>
<proxy autoDetect="false" bypassonlocal="true" proxyaddress="http://proxy:8080" />
</defaultProxy>
</system.net>
2.2 Save the file
2.3 Apply the above changes on the following three files
3. Open an elevated command prompt and run the following command, replacing the proxy address:
netsh.exe winhttp set proxy http://proxy:8080 bypass-list="*.example.com"
4. Verify the proxy setting
netsh.exe winhttp show proxy
Example for bypassing 10.*.*.* , *.domain.int and *.example.com
<system.net>
<defaultProxy>
<proxy autoDetect="false" bypassonlocal="true" proxyaddress="http://proxy:8080" />
<bypasslist>
<add address="10\.\d{1,3}\.\d{1,3}\.\d{1,3}" />
<add address="[0-9a-zA-Z]+\.example\.com$" />
<add address="[0-9a-zA-Z]+\.domain\.int$" />
</bypasslist>
</defaultProxy>
</system.net>
6. Reboot server
Detailed documentation for configuring .NET Framework proxy can be found on the following Microsoft links:
Quest does not provide support for .NET Framework or for problems that arise from improper modification of the configuration files. The .NET Framework configuration files contain critical data to your computer and applications. Make sure you back up the files before modifying it.
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center