6

Our Satellite internet provider gives us "unlimited browsing" between 11pm and 7pm. As we have a very limited bandwidth in the day and the download is reasonably large, other than staying up late is there any way I could schedule the download as to only start at 11pm? I was thinking a PowerShell command might be possible (but I have no idea how to achieve this) or maybe a GUI alternative.

I have tried Windows Task Scheduler but although I could get the browser to open I didn't know how I could make the download start itself.

I am running Windows 8.1

JMatt
  • 485

4 Answers4

4

I think any decent download manager has this feature... Googling it, the second result I found is free download manager, free and open source, and the feature list mentions "powerful scheduler", so I guess that would do.

m4573r
  • 5,701
3

I would use a scheduled task. If you must, you can type it into a powershell window, but it will also work from cmd.exe console.

SchTasks /Create /SC DAILY /TN "Late Night Download" /TR “C:\Downloader.ps1” /ST 23:00

or try it's GUI.

taskschd.msc.

Downloader.ps1

Import-Module BitsTransfer
Start-BitsTransfer "http://downloads.sourceforge.net/sevenzip/7z920.msi" "C:\Temp\7z920.msi" -Description "Late Night Download" -DisplayName "Unlimited Browsing after 11pm"
2

Here is how I would do it:

  • Create the download in your download manager.
  • While it is still downloading, exit it, don't pause.
  • Schedule it to start after 11pm using scheduled task or any third party software.
jonsca
  • 4,084
1

You already know how to run the browser when you want (just make sure the browser is pointing at the downloading file, not the web page!)

I suggest you use FireFox as you can set it to automatically save files and not be prompted:

orange Firefox button (or Tools menu) > Options > General > "Saves files to"

Source

For IE, there are a few options listed here on SU

Dave
  • 25,513