Add new comment

Add the following code to enable it to download the cabinet filets over a proxy with additional authentification:

WebProxy proxy = new WebProxy("host:port");
proxy.Credentials = new System.Net.NetworkCredential("username", "password"); //, "domain");
web.Proxy = proxy;

Thanks for the tool..