How do I install Wget for Windows?

It sounds like you're using Windows. To download a pre-built wget.exe for Windows, see WGET for Windows.

In the box near the top of the page, wget.exe is a link to download the wget program itself. Since this is an exe file already, there's no need to unzip or install this particular version.

What you downloaded previously was the source code to wget, so you would need a compiler to build a wget for your system. This is probably not what you wanted.


A pre-built binary 32-bit version of wget for Windows (currently version 1.11.4-1) can be found on SourceForge at:

http://gnuwin32.sourceforge.net/packages/wget.htm

You have the choice of downloading the wget package as a setup program or a zip file. As described on the SourceForge download page, here is the difference:

If you download the Setup program of the package, any requirements for running applications, such as dynamic link libraries (DLL's) from the dependencies as listed below under Requirements, are already included. If you download the package as Zip files, then you must download and install the dependencies zip file yourself. Developer files (header files and libraries) from other packages are however not included; so if you wish to develop your own applications, you must separately install the required packages.

I chose to install wget with the objective for checking for broken links. Here is a bat file I created to drive wget to do so:

@echo off
setlocal
set Path=C:\Program Files (x86)\GnuWin32\bin;%Path%
set TARGET=http://your.website.com/here.html

: http://www.gnu.org/software/wget/manual/wget.html
:
: -e  --execute
: -o  --output-file
: -p  --page-requisites
: -r  --recursive
:     --spider
: -w  --wait

wget --spider -o wget.log -e robots=off --wait 1 -r -p %TARGET%

endlocal

I installed wget via its setup program on Windows 7. As you can see in the PATH variable in the bat file, the default installation location for wget.exe is:

C:\Program Files (x86)\GnuWin32\bin

You may want to also look into cygwin. This allows you to manage windows totally from command line. With cygwin you can easily wget any file.


To actually "install" wget so that you can use it from any command prompt (as you attempted), you need to add its containing folder to the PATH environment variable. Proper practice would be to create a "Utilities" folder such as C:\Program Files\Utilities and adding it to the path, and then placing any utilities that do not come with an installer into here and adding it to the system path.

I however, tend to be lazy and simply drop the utilities into C:\Windows\System32 as it is already on the path and doesn't require a reboot to take effect. Use proper caution when working with the windows directory if you choose this route.


Download wget.exe from https://eternallybored.org/misc/wget/ and then copy into your "C:\Users\%USERNAME%\AppData\Local\Microsoft\WindowsApps" folder. You'll get an up to date copy of wget and it will be on the path right away.