Se la CPU rimane al 100% di utilizzo durante Microsoft Update si può provare ad eliminare la cache degli aggiornamenti automatici tramite la seguente procedura:
- Riavviare il computer
- Arrestare il servizio Aggiornamenti automatici tramite il comando net stop wuauserv
- Arrestare il servizio Servizio trasferimento intelligente in background tramite il comando net stop bits
- Eliminare la cartella %windir%/softwaredistribution
Il problema però potrebbe anche essere dovuto ad altre cause e tal proposito si vedano i seguenti articoli relativi a specifiche hotfix da richiedere al supporto tecnico:
- FIX: When you run Windows Update to scan for updates that use Windows Installer, including Office updates, CPU utilization may reach 100 percent for prolonged periods
- The Automatic Updates service may stop responding
- You receive an access violation when you try to install an update from Windows Update after you apply hotfix package 916089
[Update]
In certi casi potrebbe essere utile anche rieseguire la registrazione di alcune ddl utilizzate Microsoft Update riporto quindi un script che esegue le varie operazioni:
net stop wuauserv
net stop bits
rd /S /q “%windir%\softwaredistribution”
REGSVR32 /s WUAPI.DLL
REGSVR32 /s WUAUENG.DLL
REGSVR32 /s WUAUENG1.DLL
REGSVR32 /s WUAUSERV.DLL
REGSVR32 /s ATL.DLL
REGSVR32 /s WUCLTUI.DLL
REGSVR32 /s WUPS.DLL
REGSVR32 /s WUPS2.DLL
REGSVR32 /s WUWEB.DLL
REGSVR32 /s MUWEB.DLL
REGSVR32 /s MSXML3.DLL
REGSVR32 /s QMGR.DLL
REGSVR32 /s QMGRPRXY.DLL
REGSVR32 /s JSCRIPT.DLL
2 commenti su “CPU al 100% durante Microsoft Update”