How can I download something from the web directly without Internet Explorer or Firefox opening Acrobat Reader/Quicktime/MS Word/whatever?
I'm using Windows, so a Windows version of Wget would do.
|
|
Wget for Windows should work.
. |
|||||
|
|
An alternative I discovered recently, using PowerShell:
|
|||||||||||||||||
|
|
Windows has its own command line download utility - BITSAdmin:
|
|||||||||||
|
|
Save the following text as
This is the code:
|
||||
|
|
|
There is also a native cURL for Windows available here. There are many flavors available- with SSL support, without SSL support. You don't need the extra baggage of cygwin and the likes, just one small exe file. |
||||
|
|
|
You can get WGet for Windows here. Alternatively you can right click on the download link of the item you want to download and choose Save As. This will download the file and not open it in the assigned application. |
|||
|
|
|
And http://www.httrack.com/ has a nice gui (and it's free), for mirroring sites. Also has a Linux version. |
|||
|
|
|
If you want a GUI, then try VisualWget, which is actually clean, and feature full. It is based on GNU Wget for its download engine. EDIT: updated link. |
|||||
|
|
I know I am really late. I was searching for the same, and since I had no privilege to install any of the above packages, I went for a small workaround (to download 30+files)
|
||||
|
|
|
If PowerShell is an option, that's the preferred route, since you (potentially) won't have to install anything extra:
Failing that, wget for windows, as others have pointed out is definitely the second best option. As posted above it looks like you can download wget all by itself, or you can grab it as a part of Cygwin or MSys If for some reason, you find yourself stuck in a time warp, using a machine that doesn't have PowerShell and you have zero access to a working web browser (i.e. IE is the only browser on the system, and its settings are corrupt), and your file is on an FTP site (as opposed to HTTP):
If memory serves it's been there since Windows 98, and I can confirm that it is still there in Windows 8 RTM (you might have to go into appwiz.cpl and add/remove features to get it). This utility can both download and upload files to/from FTP sites on the web. It can also be used in scripts to automate either operation. This tool being built-in has been a real life saver for me in the past, esp. in the days of ftp.cdrom.com -- downloaded Firefox that way once, on a completely broken machine that had only dial-up internet (back when sneaker-net's maximum packet size was still 1.44 MB, and Firefox was still called "Netscape" /me does trollface). Couple of tips, it's its own command processor, and it has its own syntax, try typing "help". All ftp sites require a username and password; but if they allow "anonymous" users, the username is "anonymous" and the password is your email address (you can make one up if you don't want to be tracked, but usually there is some kind of logic to make sure it's a valid email address). |
|||
|
|
For my unreliable mobile broadband connection, I found http://burnbit.com/ useful. It turns a URL into a torrent. |
|||
|
|
|
I made a quick myGet.bat file which calls the powershell method described above.
I borrowed some code from here: http://www.computing.net/answers/programming/parsing-url-for-filename-with-space/14749.html |
|||
|
|
An alternative to using gnuwin32 is unxutils which includes wget. |
|||
|