Periodically download a file from web in Windows 7

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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like