Actualizações

_JInGAmIX_

Power Member
boas...

gostava de saber se alguem sabe o que se passa com um pc que tenho aqui, o que acontece é que saca as actualizações mas edpois não as consegue instalar...falha sempre a instalação..ja fui ver dos serviços...ta tudo como deve ser, o que posso fazer em relação a isso..???

desde já obrigado

cumps
 
Se não fosse genuíno, nem sequer as sacava...

Experimenta fazer isto (é o que eu faço para resolver os meus problemas intermitentes das automatic updates):

Cria um ficheiro .bat no bloco de notas com os seguintes comandos:

Código:
Net stop wuauserv

%windir%\system32\regsvr32.exe iuengine.dll
%windir%\system32\regsvr32.exe wuapi.dll
%windir%\system32\regsvr32.exe wuaueng1.dll
%windir%\system32\regsvr32.exe wuauserv.dll
%windir%\system32\regsvr32.exe wuaueng.dll
%windir%\system32\regsvr32.exe wucltui.dll
%windir%\system32\regsvr32.exe wups.dll
%windir%\system32\regsvr32.exe wuweb.dll
%windir%\system32\regsvr32.exe wups2.dll
%windir%\system32\regsvr32.exe cdm.dll
%windir%\system32\regsvr32.exe msxml2r.dll
%windir%\system32\regsvr32.exe msxml3r.dll
%windir%\system32\regsvr32.exe msxml.dll
%windir%\system32\regsvr32.exe msxml3.dll
%windir%\system32\regsvr32.exe msxmlr.dll
%windir%\system32\regsvr32.exe msxml2.dll
%windir%\system32\regsvr32.exe qmgr.dll
%windir%\system32\regsvr32.exe qmgrprxy.dll

rmdir %windir%\SoftwareDistribution /s

Net start wuauserv

make wuauclt /detectnow

Reinicias ao fim de correr o .bat que criaste, experimentas, e dizes qualquer coisa :)
 
Se não fosse genuíno, nem sequer as sacava...

Experimenta fazer isto (é o que eu faço para resolver os meus problemas intermitentes das automatic updates):

Cria um ficheiro .bat no bloco de notas com os seguintes comandos:

Código:
Net stop wuauserv

%windir%\system32\regsvr32.exe iuengine.dll
%windir%\system32\regsvr32.exe wuapi.dll
%windir%\system32\regsvr32.exe wuaueng1.dll
%windir%\system32\regsvr32.exe wuauserv.dll
%windir%\system32\regsvr32.exe wuaueng.dll
%windir%\system32\regsvr32.exe wucltui.dll
%windir%\system32\regsvr32.exe wups.dll
%windir%\system32\regsvr32.exe wuweb.dll
%windir%\system32\regsvr32.exe wups2.dll
%windir%\system32\regsvr32.exe cdm.dll
%windir%\system32\regsvr32.exe msxml2r.dll
%windir%\system32\regsvr32.exe msxml3r.dll
%windir%\system32\regsvr32.exe msxml.dll
%windir%\system32\regsvr32.exe msxml3.dll
%windir%\system32\regsvr32.exe msxmlr.dll
%windir%\system32\regsvr32.exe msxml2.dll
%windir%\system32\regsvr32.exe qmgr.dll
%windir%\system32\regsvr32.exe qmgrprxy.dll

rmdir %windir%\SoftwareDistribution /s

Net start wuauserv

make wuauclt /detectnow
Reinicias ao fim de correr o .bat que criaste, experimentas, e dizes qualquer coisa :)

O que faz este .bat? Desactiva as actualizações?
 
Código:
Net stop wuauserv
Desactiva o serviço.
Código:
%windir%\system32\regsvr32.exe iuengine.dll
%windir%\system32\regsvr32.exe wuapi.dll
%windir%\system32\regsvr32.exe wuaueng1.dll
%windir%\system32\regsvr32.exe wuauserv.dll
%windir%\system32\regsvr32.exe wuaueng.dll
%windir%\system32\regsvr32.exe wucltui.dll
%windir%\system32\regsvr32.exe wups.dll
%windir%\system32\regsvr32.exe wuweb.dll
%windir%\system32\regsvr32.exe wups2.dll
%windir%\system32\regsvr32.exe cdm.dll
%windir%\system32\regsvr32.exe msxml2r.dll
%windir%\system32\regsvr32.exe msxml3r.dll
%windir%\system32\regsvr32.exe msxml.dll
%windir%\system32\regsvr32.exe msxml3.dll
%windir%\system32\regsvr32.exe msxmlr.dll
%windir%\system32\regsvr32.exe msxml2.dll
%windir%\system32\regsvr32.exe qmgr.dll
%windir%\system32\regsvr32.exe qmgrprxy.dll
Faz o re-register às dll's das actualizações automáticas.

Código:
rmdir %windir%\SoftwareDistribution /s
Limpa a cache das actualizações.

Código:
Net start wuauserv
Reinicia o serviço.

Código:
make wuauclt /detectnow
Manda o Windows procurar updates.
 
Back
Topo