Maison > Article > Tutoriel système > Mise à jour de la mise à jour Win10 version 2004 bloquée à 49 % de la solution
Après la récente publication de la mise à jour win102004, de nombreux utilisateurs effectuent la mise à jour vers la dernière version 2004 du système. Cependant, certains utilisateurs ont constaté qu'ils étaient bloqués lors de la mise à jour à 49 %. La solution n'est pas très gênante, jetons un coup d'œil.
Situation problématique :
L'installation est toujours bloquée à 49%, et le redémarrage n'a aucun effet.
Solution 1 :
Attendez. Si l'état du réseau est normal, attendez un moment. Si le temps est trop long, par exemple 2 heures ou plus, essayez la méthode 2.
Solution 2 :
1. Appuyez sur les touches en même temps et cliquez sur
2 Copiez le code de programme suivant dans le PowerShell que vous venez d'ouvrir et appuyez sur Entrée
$arch = Get-WMIObject -Class Win32_Processor. -ComputerName LocalHost | Select-Object AddressWidth
Write-Host "1. Arrêt des services Windows Update..."
Stop-Service -Name BITS
Stop-Service -Name wuauserv
Stop-Service -Name appidsvc
Stop-Service-Name cryptsvc
Write-Host "2. Supprimer le fichier de données QMGR..."
Remove-Item "$env:allusersprofileApplication DataMicrosoftNetworkDownloaderqmgr*.dat" -ErrorAction SilentlyContinue
Write-Host "3. Renommer le Distribution de logiciels Suppression de l'ancien journal Windows Update..."
Remove-Item $env:systemrootWindowsUpdate.log -ErrorAction SilentlyContinue
Write-Host "5. Réinitialisation des services Windows Update aux paramètres par défaut..."
"sc. exe sdset bits D:(A ;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)"
"sc .exe sdset wuauserv D:( A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)"
Set -Location $env:systemrootsystem32
Write-Host "6. Enregistrement de certaines DLL..."
regsvr32.exe /s atl.dll
regsvr32.exe /s urlmon.dll
regsvr32.exe /s mshtml. dll
regsvr32.exe / s shdocvw.dll
regsvr32.exe /s Browseui.dll
regsvr32.exe /s jscript.dll
regsvr32.exe /s vbscript.dll
regsvr32.exe /s scrrun. dll
regsvr32.exe / msxml.dll regsvr32.exe / s wintrust.dll
regsvr32.exe /s dssenh.dll
regsvr32.exe /s rsaenh.dll
regsvr32.exe /s gpkcsp.dll
regsvr32.exe /s sccbase.dll
reg svr32.exe / s slbcsp.dll
regsvr32.exe /s cryptdlg.dll
regsvr32.exe /s oleaut32.dll
regsvr32.exe /s ole32.dll
regsvr32.exe /s shell32.dll
regsvr32.exe / s initpki.dll
regsvr32.exe /s wuapi.dll
regsvr32.exe /s wuaueng.dll
regsvr32.exe /s wuaueng1.dll
regsvr32.exe /s wucltui.dll
regs vr32.exe / s wups.dll
regsvr32.exe /s wups2.dll
regsvr32.exe /s wuweb.dll
regsvr32.exe /s qmgr.dll "7) Suppression Paramètres du client WSUS..."
REG DELETE "HKLMSOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdate" /v AccountDomainSid /f
REG DELETE "HKLMSOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdate" /v PingID /f
REG DELETE "HKLMSOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdate" SusClientId /f
Write-Host "8 ) Réinitialisation de WinSock..."
netsh winsock reset
netsh winhttp réinitialiser le proxy
Write-Host "9) Supprimer tous les travaux BITS..."
Get-BitsTransfer | Remove-BitsTransfer
Write-Host " 10) Tentative d'installation de l'agent Windows Update..."
if( $arch -eq 64){
wusa Windows8-RT-KB2937636-x64 /quiet
}
else{
wusa Windows8-RT- KB2937636-x86 /quiet
}
Write-Host "11) Démarrage des services Windows Update..."
Start-Service -Name BITS
Start-Service -Name wuauserv
Start-Service -Name appidsvc
Start-Service -Name cryptsvc
Write-Host "12) Forçage de la découverte. .."
wuauclt /resetauthorization /detectnow
Write-Host "Processus terminé. Veuillez redémarrer votre ordinateur."
3. Ignorez le texte rouge. erreur et redémarrez l'ordinateur
4. Exécutez Windows Update et il fonctionnera normalement.Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!