-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Stuart Davies wrote: > To whom it may concern.
Hi Stuart, thanks for reposting to the list. > at 12:52 /EVERY:M,T,W,Th,F,S,Su D:\xxxxx-xxxxx\Auto\WGET\wget.exe > --user=XXX --password=YYY --directory-prefix="D:\Download" > --secure-protocol=auto > --ca-certificate="D:\xxxxx-xxxxx\Auto\WGET\cacert.pem" > -http_proxy=10.0.1.10:70 --proxy-user=155258 ^^^^^^^^^^^^^^^ That one's suspect. Actually, I'm surprised that Wget runs at all with that one. http_proxy is actually a .wgetrc command, and not a Wget option. You can specify it on the commandline with the -e option: -e http_proxy=10.0.1.10:70 Except that, actually, according to the documentation and from what I can see in the source code, what you want is https_proxy (the proxy value used for https URLs), rather than http_proxy (the one used for plain http URLs). -e https_proxy=10.0.1.10:70 - -- HTH, Micah J. Cowan Programmer, musician, typesetting enthusiast, gamer... http://micah.cowan.name/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHvc+X7M8hyUobTrERAgBMAJ9bVnfwaPsS0oMFMThkEH5VYVzgMACfRtHl S05P537KR4dGISn/uqqOKiI= =7oKi -----END PGP SIGNATURE-----
