Bonsoir à tous ^^
J'ai enfin trouvé comment corriger l'erreur, en regardant du côté des forums pour WSUS, le serveur Windows Update des entreprises pour Windows Server.
SOURCE DE LA SOLUTION :**http://www.wsus.info/index.php?showtopic=13828&view=findpost&p=46581**
Il suffit de (schéma) :
- Stopper le service Windows Update
- Effacer l'ID WSUS obsolète donné par le serveur (serait-ce ça le cookie d'authentification ?). Il est stocké dans le registre.
- Réinitialiser le dossier SoftwareDistribution et WindowsUpdate.log
- Ré-enregistrer les composants Windows Update
- Démarrer le service Windows Update
- Réinitialiser l'autorisation d'accès au serveur et en redemander une nouvelle maintenant
Je ne peux pas garantir à 100% que ça fonctionnera ou que ce soit cette procédure qui résolve le problème, mais en tout cas Microsoft Update re-fonctionne sur mon PC après que j'aie suivi cette procédure.
Pour effectuer ces opérations, entrez ce qui suit dans l'Invite de commandes (en tant qu'administrateur) :
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientIdValidation /f
net stop wuauserv
move %windir%\windowsupdate.log %windir%\windowsupdate.old.log
move %windir%\SoftwareDistribution %windir%\SoftwareDistributionold
regsvr32 /s atl.dll
regsvr32 /s wucltui.dll
regsvr32 /s wups.dll
regsvr32 /s wuaueng.dll
regsvr32 /s wuapi.dll
regsvr32 /s msxml3.dll
regsvr32 /s mssip32.dll
regsvr32 /s initpki.dll
regsvr32 /s softpub.dll
net start wuauserv
wuauclt /resetauthorization /detectnow
Et voilà ! Relancez la recherche de mises à jour après une dizaine de minutes (avec Microsoft Update activé)
Bonne soirée en espérant avoir été utile :D
(sujet résolu)