Как запланировать загрузку обновлений windows 8.1?

8367
K.K.POTHAL

Это связано с тем, что мой интернет-трафик ограничен интернет-провайдером, и он бесплатный только в течение определенного периода в течение дня (2:00 утра - 7:00 утра). Я установил настройки обновления Windows, чтобы проверять наличие обновлений, но уведомляю меня перед загрузкой, чтобы предотвратить автоматическое использование моего трафика. Но тогда я должен вручную сказать, когда начать загрузку. Я, очевидно, не хочу ложиться спать так поздно, чтобы просто нажать кнопку. Итак, еще раз, как я могу запланировать «обновления Windows» для «Windows 8.1 Pro» для запуска / остановки в указанное время?

4

2 ответа на вопрос

5
Synetech

my internet traffic is limited by ISP and it's free only during a specific period throughout the day (2:00am-7:00am). … how can I schedule "windows updates" for "windows 8.1 pro" to start/stop at specified times?

By default, Windows will check for updates at 3am which should suit your situation, so you should leave it set to automatically check for updates instead of doing it manually. It should be waking the system at 3am to do the check, but if it’s not doing so even when set to automatic updates, then it will do it the next time you boot up, which could be past 7am. To let Windows wake your system at night to check for updates:

  1. Go to Action Center
  2. Look for the Automatic Maintenance section
  3. Put a check in the Allow scheduled maintenance to wake up my computer at the scheduled time check-box
  4. Optionally set the exact time (to the hour) when Windows should wake up and check

at that time(2AM - 7AM), the PC is engaged in downloading videos & other files. So how can let it run schedule maintenance at that time as this can affect the downloading and other processes. I want to run only the "windows update" not any other maintenance work at that time.

You want to download Windows updates only during the free-bandwidth period between 2-7am, but you don’t want the download of Windows updates to interfere with P2P downloading during that same period? I’m not sure what your question is anymore, but if you are asking about preventing the system from being rebooting after an update, then you can do that. How will depend on what edition of Windows you are using.

  • Windows Professional and up:

    1. Run gpedit.msc
    2. Navigate to Computer Configuration → Administrative templates → Windows Components → Windows Update
    3. Set No auto-restart with logged on users for scheduled automatic updates installations to Enalbed

  • Windows Home and down:

    1. Run regedit
    2. Navigate to HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\WindowsUpdate\AU
    3. Select Edit → New → DWORD
    4. Enter NoAutoRebootWithLoggedOnUsers for the value name
    5. Double-click it and enter 1 for the value

Figure 1: Windows update schedule is now part of the general maintenance schedule

Screenshot of Windows 8+ maintenance schedule setting

Я скучал по ним рано? :П avirk 10 лет назад 0
Спасибо за ваш очень полезный ответ. Но в это время (2 утра - 7 утра) ПК занимается загрузкой видео и других файлов. Так как же позволить ему запустить обслуживание по расписанию в это время, так как это может повлиять на загрузку и другие процессы. Я хочу запустить только «обновление Windows», а не какие-либо другие работы по обслуживанию в то время. Так как это будет возможно? K.K.POTHAL 10 лет назад 0
3
Knuckle-Dragger

One method is a scheduled task.

Update.bat

wuauclt.exe /detectnow 

This example runs at 2:00 AM daily.

SchTasks /Create /SC DAILY /TN "Late Night Update" /TR “C:\Update.bat” /ST 02:00 

You may need a sister script to cancel things at 6:45AM just to be safe.

Killer.bat

taskkill.exe /f /im wuauclt.exe 

and the scheduled task.

SchTasks /Create /SC DAILY /TN "Bat Killer" /TR “C:\Killer.bat” /ST 06:45