Szanowny Panie, Tak jak obiecałam wysyłam potencjalne kroki do rozwiązania problemu z Windows Update Metoda 1 2. Proszę otworzyć Notatnik oraz wpisać cały podany niżej skrypt zapisując plik jako Updates.bat Po zapisaniu pojawi się okienko gdzie wybieramy OK, zamykamy notatnik, przechodzimy do zapisanego pliku - klikamy prawym przyciskiem myszy wybierając Uruchom jako administrator: :: ----- Reset Windows Update Components ----- :components :: Stopping the Windows Update services call :print Stopping the Windows Update services. net stop bits net stop wuauserv net stop appidsvc net stop cryptsvc :: Checking the services status call :print Checking the services status. sc query bits | findstr /I /C:"STOPPED" If %errorlevel% NEQ 0 ( echo.Failed to stop the BITS service. echo. pause goto close ) sc query wuauserv | findstr /I /C:"STOPPED" if %errorlevel% NEQ 0 ( echo.Failed to stop the Windows Update service. echo. pause goto close ) sc query appidsvc | findstr /I /C:"STOPPED" if %errorlevel% NEQ 0 ( sc query appidsvc | findstr /I /C:"OpenService FAILED 1060" if %errorlevel% NEQ 0 ( echo.Failed to stop the Application Identity service. echo. pause goto close ) ) sc query cryptsvc | findstr /I /C:"STOPPED" If %errorlevel% NEQ 0 ( echo.Failed to stop the Cryptographic Services service. echo. pause goto close ) :: Delete the qmgr*.dat files call :print Deleting the qmgr*.dat files. del "%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\qmgr*.dat" :: Renaming the softare distribution folders backup copies call :print Renaming the softare distribution folders backup copies. takeown /f %SYSTEMROOT%\winsxs\pending.xml ren %SYSTEMROOT%\winsxs\pending.xml pending.xml.bak ren %SYSTEMROOT%\SoftwareDistribution SoftwareDistribution.bak ren %SYSTEMROOT%\system32\Catroot2 Catroot2.bak ren %SYSTEMROOT%\WindowsUpdate.log WindowsUpdate.log.bak :: Reset the BITS service and the Windows Update service to the default security descriptor call :print Reset the BITS service and the Windows Update service to the default security descriptor. sc sdset bits D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU) sc sdset wuauserv D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU) :: Reregister the BITS files and the Windows Update files call :print Reregister the BITS files and the Windows Update files. cd /d %WINDIR%\system32 regsvr32 /s atl.dll regsvr32 /s urlmon.dll regsvr32 /s mshtml.dll regsvr32 /s shdocvw.dll regsvr32 /s browseui.dll regsvr32 /s jscript.dll regsvr32 /s vbscript.dll regsvr32 /s scrrun.dll regsvr32 /s msxml.dll regsvr32 /s msxml3.dll regsvr32 /s msxml6.dll regsvr32 /s actxprxy.dll regsvr32 /s softpub.dll regsvr32 /s wintrust.dll regsvr32 /s dssenh.dll regsvr32 /s rsaenh.dll regsvr32 /s gpkcsp.dll regsvr32 /s sccbase.dll regsvr32 /s slbcsp.dll regsvr32 /s cryptdlg.dll regsvr32 /s oleaut32.dll regsvr32 /s ole32.dll regsvr32 /s shell32.dll regsvr32 /s initpki.dll regsvr32 /s wuapi.dll regsvr32 /s wuaueng.dll regsvr32 /s wuaueng1.dll regsvr32 /s wucltui.dll regsvr32 /s wups.dll regsvr32 /s wups2.dll regsvr32 /s wuweb.dll regsvr32 /s qmgr.dll regsvr32 /s qmgrprxy.dll regsvr32 /s wucltux.dll regsvr32 /s muweb.dll regsvr32 /s wuwebv.dll :: Resetting Winsock call :print Resetting Winsock. netsh winsock reset :: Resetting WinHTTP Proxy call :print Resetting WinHTTP Proxy. netsh winhttp reset proxy :: Starting the Windows Update services call :print Starting the Windows Update services. net start bits net start wuauserv net start appidsvc net start cryptsvc :: End process call :print The operation completed successfully. pause goto :Eof Metoda 2 Zastosować kroki z artykułu: http://answers.microsoft.com/pl-pl/windows/forum/windows8_1-update/problemy-z-instalowaniem-aktualizacji/9214c091-5241-4a64-b871-38780f6362b6 Metoda 3 (zawiera częściowo metodę 1) 1. Proszę pobrać aktualizacje (aktualizacji nie instalujemy, wykonamy to po całkowitym resecie): KB3102810 https://support.microsoft.com/pl-pl/kb/3102810 KB3083710 https://support.microsoft.com/pl-pl/kb/3083710 KB2852386 X64 https://www.microsoft.com/pl-PL/download/details.aspx?id=40359 2. Proszę otworzyć Notatnik oraz wpisać cały podany niżej skrypt zapisując plik jako Updates.bat Po zapisaniu pojawi się okienko gdzie wybieramy OK, zamykamy notatnik, przechodzimy do zapisanego pliku - klikamy prawym przyciskiem myszy wybierając Uruchom jako administrator: :: ----- Reset Windows Update Components ----- :components :: Stopping the Windows Update services call :print Stopping the Windows Update services. net stop bits net stop wuauserv net stop appidsvc net stop cryptsvc :: Checking the services status call :print Checking the services status. sc query bits | findstr /I /C:"STOPPED" If %errorlevel% NEQ 0 ( echo.Failed to stop the BITS service. echo. pause goto close ) sc query wuauserv | findstr /I /C:"STOPPED" if %errorlevel% NEQ 0 ( echo.Failed to stop the Windows Update service. echo. pause goto close ) sc query appidsvc | findstr /I /C:"STOPPED" if %errorlevel% NEQ 0 ( sc query appidsvc | findstr /I /C:"OpenService FAILED 1060" if %errorlevel% NEQ 0 ( echo.Failed to stop the Application Identity service. echo. pause goto close ) ) sc query cryptsvc | findstr /I /C:"STOPPED" If %errorlevel% NEQ 0 ( echo.Failed to stop the Cryptographic Services service. echo. pause goto close ) :: Delete the qmgr*.dat files call :print Deleting the qmgr*.dat files. del "%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\qmgr*.dat" :: Renaming the softare distribution folders backup copies call :print Renaming the softare distribution folders backup copies. takeown /f %SYSTEMROOT%\winsxs\pending.xml ren %SYSTEMROOT%\winsxs\pending.xml pending.xml.bak ren %SYSTEMROOT%\SoftwareDistribution SoftwareDistribution.bak ren %SYSTEMROOT%\system32\Catroot2 Catroot2.bak ren %SYSTEMROOT%\WindowsUpdate.log WindowsUpdate.log.bak :: Reset the BITS service and the Windows Update service to the default security descriptor call :print Reset the BITS service and the Windows Update service to the default security descriptor. sc sdset bits D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU) sc sdset wuauserv D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU) :: Reregister the BITS files and the Windows Update files call :print Reregister the BITS files and the Windows Update files. cd /d %WINDIR%\system32 regsvr32 /s atl.dll regsvr32 /s urlmon.dll regsvr32 /s mshtml.dll regsvr32 /s shdocvw.dll regsvr32 /s browseui.dll regsvr32 /s jscript.dll regsvr32 /s vbscript.dll regsvr32 /s scrrun.dll regsvr32 /s msxml.dll regsvr32 /s msxml3.dll regsvr32 /s msxml6.dll regsvr32 /s actxprxy.dll regsvr32 /s softpub.dll regsvr32 /s wintrust.dll regsvr32 /s dssenh.dll regsvr32 /s rsaenh.dll regsvr32 /s gpkcsp.dll regsvr32 /s sccbase.dll regsvr32 /s slbcsp.dll regsvr32 /s cryptdlg.dll regsvr32 /s oleaut32.dll regsvr32 /s ole32.dll regsvr32 /s shell32.dll regsvr32 /s initpki.dll regsvr32 /s wuapi.dll regsvr32 /s wuaueng.dll regsvr32 /s wuaueng1.dll regsvr32 /s wucltui.dll regsvr32 /s wups.dll regsvr32 /s wups2.dll regsvr32 /s wuweb.dll regsvr32 /s qmgr.dll regsvr32 /s qmgrprxy.dll regsvr32 /s wucltux.dll regsvr32 /s muweb.dll regsvr32 /s wuwebv.dll :: Resetting Winsock call :print Resetting Winsock. netsh winsock reset :: Resetting WinHTTP Proxy call :print Resetting WinHTTP Proxy. netsh winhttp reset proxy :: Starting the Windows Update services call :print Starting the Windows Update services. net start bits net start wuauserv net start appidsvc net start cryptsvc :: End process call :print The operation completed successfully. pause goto :Eof 3. Proszę uruchomić komputer w trybie czystego rozruchu - http://support.microsoft.com/kb/929135 4. Uruchamiamy komputer ponownie 5. Instalujemy aktualizacje po każdej uruchamiając komputer ponownie Metoda 4 (niestety po angielsku) http://answers.microsoft.com/en-us/windows/forum/windows8_1-windows_update/windows-update-error-code-8024a000/562845f3-78d5-42a0-bed5-e3fd39f01df7