A atualização do Windows pára de funcionar após a atualização para o Pro

0

Eu tenho um laptop Samsung 7 Gamer que vem com o Windows 8 instalado. Eu tenho uma assinatura do MSDN e queria instalar o Windows 8 Pro. Eu tentei adicionar o código Pro no Windows pré-instalado, bem como uma nova instalação limpa.

O Windows Update está com problemas. Atualizações são listadas como estando disponíveis, mas uma vez que o download inicia, parece apenas parar e voltar para a lista de atualizações. Ou às vezes diz que não há atualizações disponíveis.

Procurei na rede e tentei várias etapas, como desinstalar meus drivers NVidia, desabilitar todos os serviços de inicialização, exceto os Microsoft, e executar sfc /scannow por meio de um prompt de comando.

Examinei o arquivo de log e estou vendo alguns erros como estes:

2013-04-21  15:26:29:464    1124    d74 DnldMgr   Download job bytes total = 1989293, bytes transferred = 1330139
2013-04-21  15:26:30:977    1124    5d0 WuTask  Uninit WU Task Manager
2013-04-21  15:26:31:352    1124    106c    Agent     * WARNING: Exit code = 0x8024000B
2013-04-21  15:26:31:352    1124    106c    Agent   *********
2013-04-21  15:26:31:352    1124    106c    Agent   **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
2013-04-21  15:26:31:352    1124    106c    Agent   *************
2013-04-21  15:26:31:352    1124    106c    Agent   WARNING: WU client failed Searching for update with error 0x8024000b

Em seguida, mais adiante:

2013-04-21  15:26:32:649    1124    d3c AU  WARNING: Failed to get Wu Exemption info from NLM, assuming not exempt, error = 0x80070490
2013-04-21  15:26:32:649    1124    d3c AU  UpdateDownloadProperties: download priority has changed from 3 to 2.
2013-04-21  15:26:32:649    1124    d3c AU  WARNING: Failed to change download properties of call, error = 0x80070057

É quase como se ele começa a baixar, em seguida, apenas decide desistir. Consegui persuadir algumas atualizações muito pequenas a serem instaladas. Mas os outros simplesmente caem.

Qualquer ajuda apreciada!

    
por Firedragon 21.04.2013 / 02:59

1 resposta

2

Tente o seguinte, copie o texto em um arquivo de texto (Notepad). SaveAs ou altere a extensão do arquivo para "resetWSUS.bat" em vez de ".txt". Execute o script clicando com o botão direito do mouse no arquivo bat e selecionando "..Run como administrador". Você deve executar o script como administrador.

Este script desativará alguns serviços, renomeará as pastas e registrará algumas dlls usadas pelo Windows Update Services .........

ECHO ON
net stop wuauserv
net stop bits
net stop cryptsvc

ren %systemroot%\System32\Catroot2 Catroot2.old
ren %systemroot%\SoftwareDistribution SoftwareDistribution.old

regsvr32 c:\windows\system32\vbscript.dll /s
regsvr32 c:\windows\system32\mshtml.dll /s
regsvr32 c:\windows\system32\msjava.dll /s
regsvr32 c:\windows\system32\jscript.dll /s
regsvr32 c:\windows\system32\msxml.dll /s
regsvr32 c:\windows\system32\actxprxy.dll /s
regsvr32 c:\windows\system32\shdocvw.dll /s
regsvr32 wuapi.dll /s
regsvr32 wuaueng1.dll /s
regsvr32 wuaueng.dll /s
regsvr32 wucltui.dll /s
regsvr32 wups2.dll /s
regsvr32 wups.dll /s
regsvr32 wuweb.dll /s
regsvr32 Softpub.dll /s
regsvr32 Mssip32.dll /s
regsvr32 Initpki.dll /s
regsvr32 softpub.dll /s
regsvr32 wintrust.dll /s
regsvr32 initpki.dll /s
regsvr32 dssenh.dll /s
regsvr32 rsaenh.dll /s
regsvr32 gpkcsp.dll /s
regsvr32 sccbase.dll /s
regsvr32 slbcsp.dll /s
regsvr32 cryptdlg.dll /s
regsvr32 Urlmon.dll /s
regsvr32 Shdocvw.dll /s
regsvr32 Msjava.dll /s
regsvr32 Actxprxy.dll /s
regsvr32 Oleaut32.dll /s
regsvr32 Mshtml.dll /s
regsvr32 msxml.dll /s
regsvr32 msxml2.dll /s
regsvr32 msxml3.dll /s
regsvr32 Browseui.dll /s
regsvr32 shell32.dll /s
regsvr32 wuapi.dll /s
regsvr32 wuaueng.dll /s
regsvr32 wuaueng1.dll /s
regsvr32 wucltui.dll /s
regsvr32 wups.dll /s
regsvr32 wuweb.dll /s
regsvr32 jscript.dll /s
regsvr32 atl.dll /s
regsvr32 Mssip32.dll /s

net start wuauserv
net start bits
net start cryptsvc


PAUSE
    
por 21.04.2013 / 20:57