Correct, wget is a console program if you run it without parameters, it will complain and exit immediately.
If you want to use it with a scheduling program, you will enter the correct parameters to the scheduler, or even better - write a .bat file.
To run this thing interactively, you will need to run "cmd" or "command" to get a console window first.
A simple example:
You want to check for a new version and download www.fluffykitties.com every 5 minutes.
(Assuming you downloaded the Windows Scheduler from the link I posted above):
Make a new event, name it Wget
Set Application by browsing to wget.exe
Set parameters as "--recursive --level=0 --timestamping www.fluffykitties.com"
Set working dir to whatever
Set schedule to Every hour/selected minutes, every 5 minutes
do save and exit, exit program
You will see Windows Scheduler on your systray
WS will run wget with given parameters every 5 minutes.
By default wget will now recursively follow _all_ links on www.fluffykitties.com and download _everything_ under a folder called "www.fluffykitties.com" in Working dir.
Because web pages usually have links to other servers too, I don't recommend using this example carelessly or you may end up having the whole internet on your HD
I posted the documentation link for wget before, you can also run "wget --help" in command prompt to get a short listing of parameters. And of course you can post back and ask anything.
Edited to not automatically parse URLs. Web page www.fluffykitties.com does not exist. Don't make any assumptions on my sexual alignment
