• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Internet Explorer syntax: Opening password-protected URL from command-line...

Ichinisan

Lifer
I am going through a list of many files and downloading each one individually from an HTML server. Each time, a prompt appears asking for my username/password. I need to know how to open each URL from the command line with the name/password already specified.

I have already tried the following, which does not work:
iexplore.exe html://username😛assword@doman-or-ip-address/filename.ext

The "remember password" option from the prompt does not work because a new process is created each time my command is executed.
 
Originally posted by: Ichinisan
I am going through a list of many files and downloading each one individually from an HTML server. Each time, a prompt appears asking for my username/password. I need to know how to open each URL from the command line with the name/password already specified.

I have already tried the following, which does not work:
iexplore.exe html://username😛assword@doman-or-ip-address/filename.ext

The "remember password" option from the prompt does not work because a new process is created each time my command is executed.

did you try this?
iexplore.exe http://username😛assword@doman-or-ip-address/filename.ext

i have done this in the past and it works for me...
 
you're just interested in downloading the file? not showing it in IE?

If so it sounds like "wget" is what you need. Traditionally its a *nix tool, but there are windows versions. Check out here and do a google search for "wget for windows"

bart
 
Back
Top