

Lâerreur 0x8024a105 dans Windows Update survient gĂ©nĂ©ralement lorsquâun fichier systĂšme, un service ou un composant de mise Ă jour est endommagĂ©. Ce problĂšme empĂȘche le tĂ©lĂ©chargement ou lâinstallation correcte des mises Ă jour. Ce tutoriel prĂ©sente trois mĂ©thodes pour rĂ©soudre cette erreur et rĂ©tablir le fonctionnement normal de Windows Update.

âą Connaissances de base en administration Windows
âą Savoir exĂ©cuter CMD et PowerShell en tant quâadministrateur
âą Connexion Internet fonctionnelle

⹠Approche #1 : Réinitialiser Windows Update via CMD
⹠Approche #2 : Réparer les composants systÚme avec PowerShell
⹠Approche #3 : Automatiser la réparation via un script .ps1

âą Approche #1 : Facile
âą Approche #2 : Moyen
⹠Approche #3 : Intermédiaire à Avancé

⹠Approche #1 : Ne nécessite aucun outil externe
âą Approche #2 : Cible les fichiers corrompus du systĂšme
⹠Approche #3 : Solution rapide à réutiliser en cas de besoin

⹠Approche #1 : Nécessite de taper plusieurs commandes
âą Approche #2 : Requiert une connexion stable pour DISM
âą Approche #3 : Demande lâactivation de scripts signĂ©s



Code:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver

Code:
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 Catroot2.old

Code:
net start wuauserv
net start cryptSvc
net start bits
net start msiserver




Code:
DISM /Online /Cleanup-Image /RestoreHealth

Code:
sfc /scannow




Code:
Stop-Service wuauserv -Force
Stop-Service bits -Force
Stop-Service cryptsvc -Force
Stop-Service msiserver -Force
Rename-Item -Path "C:\Windows\SoftwareDistribution" -NewName "SoftwareDistribution.old"
Rename-Item -Path "C:\Windows\System32\catroot2" -NewName "Catroot2.old"
Start-Service wuauserv
Start-Service bits
Start-Service cryptsvc
Start-Service msiserver

Code:
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser

Code:
.\FixWU.ps1

Utiliser
Code:
Get-WindowsUpdateLog

Renommer les dossiers SoftwareDistribution et Catroot2 supprime lâhistorique mais ne dĂ©sinstalle pas les mises Ă jour

Créer un point de restauration avant toute opération systÚme critique

Utiliser lâoutil Windows Update Troubleshooter pour corriger automatiquement certains problĂšmes
Windows Update Troubleshooter

âą Support Microsoft
âą Microsoft Learn
âą Recherche Google
âą Recherche Github

Lâerreur 0x8024a105 peut souvent ĂȘtre rĂ©solue en rĂ©initialisant les services de mise Ă jour ou en rĂ©parant les fichiers systĂšme. Les approches proposĂ©es dans ce tutoriel permettent de retrouver un fonctionnement stable de Windows Update sans recourir Ă une rĂ©installation complĂšte.