How to schedule download of windows 7 updates?

22,858

Solution 1

In Update settings, Select option Install Updates Automatically and below it there is option for scheduling the update, set it to the time which suites you.

It will automatically install updates at Specific time only without need to click to start downloading.
To stop the downloading of updates beyond the Free Hours, Use Task Scheduler to force the computer to Hibernate/Sleep/Shutdown.

Update:

You can set it to Never check for Updates and set Tasks Scheduler launch wuapp.exe located in System32, now it will not check and download updates unless you explicitly click that Update Now button, to automate this clicking of buttton use AutoHotkey, it provides a macro recorder, using it you can record a click on that specific button. It will generate a script for the click at specific position on screen, this script can also be scheduled to run that time.

Solution 2

Alternatively, you can turn off automatic windows updates and set them to manual. Then, create a simple batch script which runs wuauclt.exe and then add this script to the task scheduler. Schedule the task for 2 am to start the updates and then force quit at 7am even if the updates are not installed/downloaded.

Solution 3

open start menu, search "windows update"

open windows update and select "change settings"

there is an option for downloading at a certain time and then prompting for install later.

use this option to suit your needs

Share:
22,858

Related videos on Youtube

atoMerz
Author by

atoMerz

Updated on September 18, 2022

Comments

  • atoMerz
    atoMerz almost 2 years

    To put it short: I'd like to schedule my windows updates to start/stop at certain times of day. How can I do this?
    More explanation: This is because my internet traffic is limited by ISP and it's free only during a specific period throughout the day (2:00am-7:00am). I've set windows update setting to check for updates but notify me before downloading in order to prevent it from automatically using up my traffic. But then I have to manually tell it when to start downloading. I obviously don't want to stay up that late just to push a button.
    So again, how can I schedule windows updates to start/stop at specified times?

  • atoMerz
    atoMerz almost 12 years
    Thank you. This solves half of my problem. It sets a start time. But not a stop time. What can I do about that?
  • David McGowan
    David McGowan almost 12 years
    if you have a router you could program set times into a child lock feature present in many routers, or you could get a parental control program and set that the internet is disable between x and x and then enable it yourself if you wish with the password? also you could calculate the maximum data you could download in the 5 hour free window and see if its enough to download 1gb, ive never seen a windows update anywhere near that large, even service packs
  • atoMerz
    atoMerz almost 12 years
    I have a connection to my internet is is possible to configure the task to disconnect the internet? If so, how? I don't have previous experience with ask scheduler.
  • Ankit
    Ankit almost 12 years
    glad that I could be of help. :)
  • atoMerz
    atoMerz almost 12 years
    I'm gonna have to take that back :( The option mentioned is for installing at specified time and NOT downloading. It's only available when I choose the install updates automatically option. And when I do, it starts downloading updates shortly after.
  • Ankit
    Ankit almost 12 years
    Sorry for that, Is it okay if some third party s/w gets involved in the solution ?
  • atoMerz
    atoMerz almost 12 years
    I'd like to avoid that as much as possible, but if it's the only solution then I have no choice.
  • atoMerz
    atoMerz almost 12 years
    This program only opens the Windows Update interface, it doesn't start downloading. Am I correct?
  • Ankit
    Ankit over 11 years
    I think one possible solution will be Disconnecting to the internet after you leave the PC and then reconnect at 2:00 AM using some script, but problem is that if you need internet before 2:00 AM it will start downloading.
  • Ankit
    Ankit over 11 years
    @atoMerz I have updated the answer, have a look.
  • Miles Hayler
    Miles Hayler over 11 years
    You could set a scheduled task that stops the Windows Update service. net stop “windows update”
  • atoMerz
    atoMerz over 11 years
    Thanks, I'd vote up if I could. For some reason I can't vote up.