Answer the question
In order to leave comments, you need to log in
Why might the automatic installation of windows updates not start initially?
Good day.
There is a park of computers with Windows 7, as well as AD. On all computers, windows update settings are configured by default, that is, automatically download and update on a specific day and time. But on some computers, there is the following feature - the first launch of updates on the computer does not occur automatically. That is, windows downloads updates, but does not install them until you manually click the "Install updates" button, after which the license agreement from MS appears. After accepting the agreement, the installation of updates begins and then it always takes place automatically.
The question is, is it possible to do something so that you don’t have to start installing updates manually for the first time on the computer, but they always go through automatically?
Answer the question
In order to leave comments, you need to log in
How to Fix Windows Update Errors
In order to fix many errors when installing and downloading Windows 7, 8, and Windows 10 updates, it can be as simple as resetting Windows Update completely. I'll show you how to do it automatically. In addition to resetting, the suggested script will start the required service if you get a message that Updater is not running.
Briefly about what happens when you run the following commands:
1. Services are stopped: Windows Update, BITS Background Intelligent Transfer Service, Cryptographic Services.
2. Update center service folders catroot2, SoftwareDistribution, downloader are renamed to catrootold, etc. (which, if something went wrong, can be used as backups).
3.All previously stopped services are started again.
To use the script, open Windows Notepad and copy the commands below into it. After that, save the file with the .bat extension - this will be the script for stopping, resetting and restarting Windows Update.
@ECHO OFF
echo Sbros Windows Update
echo.
PAUSE
echo.
attrib -h -r -s %windir%\system32\catroot2
attrib -h -r -s %windir%\system32\catroot2\*.*
net stop wuauserv
net stop CryptSvc
net stop BITS
ren %windir%\system32\catroot2 catroot2.old
ren %windir%\SoftwareDistribution SoftwareDistribution.old
ren "%ALLUSERSPROFILE%\application data\Microsoft\Network\downloader" downloader.old
net Start BITS
net start CryptSvc
net start wuauserv
echo.
echo Gotovo
echo.
PAUSE
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question