I have a HTTP URL of a file. Is there a simple way to schedule a periodic download of that file (say, every 24 hours) to a certain location on disk, thus overwriting the previous version?
Possibly by using Windows scheduler, and not having to install yet another bloated program just to do this simple task.
2 Answers
You can use PowerShell to perform this action just enter the following in to task scheduler.
powershell.Exe -command "& {$client = new-object System.Net.WebClient;$client.DownloadFile(')}" You can try using wget for windows and enter it's path into your system environmental variables.
It's very lightweight and it won't be a bad utility for your system if it's something you want.
1