Robert Denton wrote: > I need to get > an automated script working but it is being block by our client's MS ISA > 2004 proxy server, which requires authentication.
I use something like: #!/bin/bash userid='someone' domain='splzc001\' login=$domain$userid password='secret' /usr/local/bin/wget --quiet --no-check-certificate \ --output-document=result --http-user=$login \ --http-password=$password --post-data="__EVENTTARGET=objDownload" \ https://www.somewhere.com/application/Download.aspx If you can't figure out what's going on you can use a program named Charles to have a look (google "charles proxy"). Good luck! Remko
