Which is the workaround for the "Failed to get data for 'ProxyEnable'" error

0

I have a program which is giving me the exception "Failed to get data for 'ProxyEnable'".

How can I overcome this ?

yucer

Posted 2015-01-29T12:21:41.063

Reputation: 911

Answers

0

This could happend when a program uses the windows setting for accesing internet and the registry key "ProxyEnable" is not present (because you don't use Internet Explorer to browse or had never configured the proxy in the internet preferences). The solution is:

1) Make a text file with this info and rename it to .reg file extension.

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000

2) Double click the .reg file

The program should not give exception now. If you want the program to access internet just go to the internet explorer settings and configure the proxy information in the "connection" tab.

yucer

Posted 2015-01-29T12:21:41.063

Reputation: 911