1/5 - (1 голос)

Если ваш ПК не хочет обновляться, попробуйте запустить следующий cmd скрипт:

 

REM Description: This script resets all of Windows Update Agent settings. 

@echo off 

cls 

 

@echo 1. Stopping BITS and Automatic Updates services… 

net stop bits  

net stop wuauserv

 

@echo 2. Deleting AU cache folder and log file… 

del /f /q %windir%WindowsUpdate.log 

del /f /s /q %windir%SoftwareDistribution*.* 

 

@echo 3. Re-registering DLL files… 

%windir%system32
egsvr32.exe /s %windir%system32atl.dll  

%windir%system32
egsvr32.exe /s %windir%system32jscript.dll  

%windir%system32
egsvr32.exe /s %windir%system32msxml3.dll  

%windir%system32
egsvr32.exe /s %windir%system32softpub.dll  

%windir%system32
egsvr32.exe /s %windir%system32wuapi.dll  

%windir%system32
egsvr32.exe /s %windir%system32wuaueng.dll  

%windir%system32
egsvr32.exe /s %windir%system32wuaueng1.dll  

%windir%system32
egsvr32.exe /s %windir%system32wucltui.dll  

%windir%system32
egsvr32.exe /s %windir%system32wups.dll  

%windir%system32
egsvr32.exe /s %windir%system32wups2.dll  

%windir%system32
egsvr32.exe /s %windir%system32wuweb.dll 

 

@echo 4. Removing WSUS Client Id… 

REG DELETE «HKLMSOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdate» /v AccountDomainSid /f 

REG DELETE «HKLMSOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdate» /v PingID /f 

REG DELETE «HKLMSOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdate» /v SusClientId /f 

 

@echo 5. Restart BITS and AU services… 

net start bits 

net start wuauserv 

 

@echo 6. Forcing AU discovery… 

wuauclt /resetauthorization /detectnow