- Find the applications install location (or .exe location). If you are using a shortcut, you can right click, and check the properties to find this place.
- Locate your applications .config file. Typically this will be in the same folder as your .exe; For example, for myappname.exe, you should be able to see myappname.exe.config in the same directory
- Create one if there there is only not already present. Make sure to name it myappname.exe.config
- If creating a new file, Open the newly created file in notepad, and paste the below into it. Make sure to change proxyservername & proxyserverport in your environment
- if file already exists, add the defaultProxy section as shown below and save file
- Restart the application
<?xml version="1.0" encoding="utf-8" ?> <configuration> <system.net> <defaultProxy enabled="true" useDefaultCredentials="true"> <proxy proxyaddress="http://proxyservername:proxyserverport/" bypassonlocal="false" usesystemdefault="false" autoDetect="false" /> </defaultProxy> </system.net> </configuration>
No comments:
Post a Comment