opheliecretu Posté(e) le 13 avril 2022 Share Posté(e) le 13 avril 2022 Bonjour les amis crabonautes désolée de ma longue absence plusieurs décès et problèmes de santé m'ont éloigné de ce site. Mais également disque dur de mon pc portable ACER qui m'a lâché aussi. Mais aujourd'hui je reviens vers vous car j'ai un problème avec Windows Update. Votre appareil ne dispose pas des correctifs de qualité et de sécurité importants. Donc forcément les mises à jours sont toutes en échec. J'ai déjà essayé ceci : Votre appareil ne dispose pas des correctifs : la solution (commentcamarche.net) Cela ne marche pas. Si je vais sur Winver : je vous laisse une capture d'écran en bas de mon problème. Que dois-je faire de plus pour que mon problème revienne à la normale? Merci à vous et bonne soirée. 1 Lien vers le commentaire
Yves B. Posté(e) le 13 avril 2022 Share Posté(e) le 13 avril 2022 Salut @opheliecretu, tu pourrais effectuer un “reset” de Windows Update, en exécutant le code ci-dessous, après l'avoir copier/coller dans le Bloc-notes, et le nommer “Windows Update Reset.bat”, très important de terminer en .bat Tu l'enregistres sur le Bureau, tu crées un point de restauration, et puis tu l'exécutes en tant qu'Administrateur. Et tu laisses travailler, une fois que le script a terminé son travail, tu auras le message suivant : Veuillez sauvegarder et fermer tout ce qui est ouvert maintenant, avant que l'ordinateur ne soit redémarré. Et de presser sur une touche pour redémarrer. Code : @echo off :: Prompt to Run as administrator Set "Variable=0" & if exist "%temp%\getadmin.vbs" del "%temp%\getadmin.vbs" fsutil dirty query %systemdrive% >nul 2>&1 && goto :(Privileges_got) If "%1"=="%Variable%" (echo. &echo. Please right-click on the file and select &echo. "Run as administrator". &echo. Press any key to exit. &pause>nul 2>&1& exit) cmd /u /c echo Set UAC = CreateObject^("Shell.Application"^) : UAC.ShellExecute "%~0", "%Variable%", "", "runas", 1 > "%temp%\getadmin.vbs"&cscript //nologo "%temp%\getadmin.vbs" & exit :(Privileges_got) :: Checking and Stopping the Windows Update services set b=0 :bits set /a b=%b%+1 if %b% equ 3 ( goto end1 ) net stop bits echo Checking the bits service status. sc query bits | findstr /I /C:"STOPPED" if not %errorlevel%==0 ( goto bits ) goto loop2 :end1 cls echo. echo Cannot reset Windows Update since "Background Intelligent Transfer Service" (bits) service failed to stop. Please restart the computer, and try again. echo. pause goto Start :loop2 set w=0 :wuauserv set /a w=%w%+1 if %w% equ 3 ( goto end2 ) net stop wuauserv echo Checking the wuauserv service status. sc query wuauserv | findstr /I /C:"STOPPED" if not %errorlevel%==0 ( goto wuauserv ) goto loop3 :end2 cls echo. echo Cannot reset Windows Update since "Windows Update" (wuauserv) service failed to stop. Please restart the computer, and try again. echo. pause goto Start :loop3 set app=0 :appidsvc set /a app=%app%+1 if %app% equ 3 ( goto end3 ) net stop appidsvc echo Checking the appidsvc service status. sc query appidsvc | findstr /I /C:"STOPPED" if not %errorlevel%==0 ( goto appidsvc ) goto loop4 :end3 cls echo. echo Cannot reset Windows Update since "Application Identity" (appidsvc) service failed to stop. Please restart the computer, and try again. echo. pause goto Start :loop4 set c=0 :cryptsvc set /a c=%c%+1 if %c% equ 3 ( goto end4 ) net stop cryptsvc echo Checking the cryptsvc service status. sc query cryptsvc | findstr /I /C:"STOPPED" if not %errorlevel%==0 ( goto cryptsvc ) goto Reset :end4 cls echo. echo Cannot reset Windows Update since "Cryptographic Services" (cryptsvc) service failed to stop. Please restart the computer, and try again. echo. pause goto Start :Reset Ipconfig /flushdns del /s /q /f "%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\qmgr*.dat" del /s /q /f "%ALLUSERSPROFILE%\Microsoft\Network\Downloader\qmgr*.dat" del /s /q /f "%SYSTEMROOT%\Logs\WindowsUpdate\*" if exist "%SYSTEMROOT%\winsxs\pending.xml.bak" del /s /q /f "%SYSTEMROOT%\winsxs\pending.xml.bak" if exist "%SYSTEMROOT%\winsxs\pending.xml" ( takeown /f "%SYSTEMROOT%\winsxs\pending.xml" attrib -r -s -h /s /d "%SYSTEMROOT%\winsxs\pending.xml" ren "%SYSTEMROOT%\winsxs\pending.xml" pending.xml.bak ) if exist "%SYSTEMROOT%\SoftwareDistribution.bak" rmdir /s /q "%SYSTEMROOT%\SoftwareDistribution.bak" if exist "%SYSTEMROOT%\SoftwareDistribution" ( attrib -r -s -h /s /d "%SYSTEMROOT%\SoftwareDistribution" ren "%SYSTEMROOT%\SoftwareDistribution" SoftwareDistribution.bak ) if exist "%SYSTEMROOT%\system32\Catroot2.bak" rmdir /s /q "%SYSTEMROOT%\system32\Catroot2.bak" if exist "%SYSTEMROOT%\system32\Catroot2" ( attrib -r -s -h /s /d "%SYSTEMROOT%\system32\Catroot2" ren "%SYSTEMROOT%\system32\Catroot2" Catroot2.bak ) :: Reset Windows Update policies reg delete "HKCU\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /f reg delete "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\WindowsUpdate" /f reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /f reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\WindowsUpdate" /f gpupdate /force :: Reset the BITS service and the Windows Update service to the default security descriptor 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) :: Reregister the BITS files and the Windows Update files cd /d %windir%\system32 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 /s msxml.dll regsvr32.exe /s msxml3.dll regsvr32.exe /s msxml6.dll regsvr32.exe /s actxprxy.dll regsvr32.exe /s softpub.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 regsvr32.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 regsvr32.exe /s wups.dll regsvr32.exe /s wups2.dll regsvr32.exe /s wuweb.dll regsvr32.exe /s qmgr.dll regsvr32.exe /s qmgrprxy.dll regsvr32.exe /s wucltux.dll regsvr32.exe /s muweb.dll regsvr32.exe /s wuwebv.dll regsvr32.exe /s wudriver.dll netsh winsock reset netsh winsock reset proxy :: Set the startup type as automatic sc config wuauserv start= auto sc config bits start= auto sc config DcomLaunch start= auto :Start net start bits net start wuauserv net start appidsvc net start cryptsvc :: Restart computer cls echo It is required to restart the computer to finish resetting Windows Update. echo. echo Please save and close anything open now, before the computer is restarted. echo. pause echo. echo. echo. echo *** Restart computer now. *** echo. pause shutdown /r /f /t 0 Si le script n'arrive pas à fermer un service après trois reprises, tu auras un message d'échec, et une demande de presser une touche, ce qui relancera le fichier .bat pour relance les services qui auront été fermé. Et tu redémarres ton ordinateur avant de lancer quelque application que ce soit. Tiens nous informé A+ 2 Lien vers le commentaire
opheliecretu Posté(e) le 13 avril 2022 Auteur Share Posté(e) le 13 avril 2022 Bonsoir à toi Yves B. je te tiendrai informé demain après-midi si tu veux bien? Bonne soirée à toi. 1 Lien vers le commentaire
opheliecretu Posté(e) le 13 avril 2022 Auteur Share Posté(e) le 13 avril 2022 Rebonsoir à toi Yves B. comme mon pc portable retourne comme neuve je voudrais avoir ton avis sur cela : Télécharger Windows 10 (microsoft.com) Que penses-tu de cela? Bonne soirée à toi. Lien vers le commentaire
opheliecretu Posté(e) le 13 avril 2022 Auteur Share Posté(e) le 13 avril 2022 Rebonsoir à tous dans mon précédent message j'ai oublié de vous mettre une capture d'écran. Bonne soirée à tous. Lien vers le commentaire
JarodAlpha Posté(e) le 13 avril 2022 Share Posté(e) le 13 avril 2022 (modifié) Bonjour @opheliecretu Tu peux aussi vérifier l'intégrité de ton système avec ce crypte en (Scannow.bat): @Echo Off :: On execute les commandes en administateur :: Sfc Scannow 1.2 :--------------------------------------------------------------------------- REM --> Verification des permissions >nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system" REM --> Erreur vous ne possedez pas les droits admin if '%errorlevel%' NEQ '0' ( echo Verification des privileges administrateur goto UACPrompt ) else ( goto gotAdmin ) :UACPrompt echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" set params = %*:"=" echo UAC.ShellExecute "%~s0", "%params%", "", "runas", 1 >> "%temp%\getadmin.vbs" "%temp%\getadmin.vbs" exit /B :gotAdmin if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" ) pushd "%CD%" CD /D "%~dp0" :---------------------------------------------------------------------------- @Echo Wmic.exe /Namespace:\\root\default Path SystemRestore Call CreateRestorePoint "My Shortcut Restore Point", 100, 7 Pause Sfc/verifyonly Pause Sfc/Scannow Pause Sfc/verifyonly Pause Tiens nous informé Modifié le 13 avril 2022 par JarodAlpha Lien vers le commentaire
opheliecretu Posté(e) le 13 avril 2022 Auteur Share Posté(e) le 13 avril 2022 Bonsoir à toi JarodAlpha je ne comprends pas bien ta réponse. Il faut que je le fasse via le bloc-note. Est-ce bien cela? Et ensuite que devrais-je faire? Est-ce que tu pourras m'aiguiller demain soir? Bonne soirée à toi. Lien vers le commentaire
JarodAlpha Posté(e) le 13 avril 2022 Share Posté(e) le 13 avril 2022 Bonjour @opheliecretu tu copy le crypte et tu le colle dans le bloc-notes et tu l'enregistre en changeant l'extension .txt en .bat et tu l'exécute ca peut durer un moment soi patient et tien nous au courant Lien vers le commentaire
JarodAlpha Posté(e) le 13 avril 2022 Share Posté(e) le 13 avril 2022 (modifié) Bonsoir @opheliecretu Citation Est-ce que tu pourras m'aiguiller demain soir? Avec plaisir en espérant que ton problème se fix Bonesoirée Modifié le 13 avril 2022 par JarodAlpha Lien vers le commentaire
Yves B. Posté(e) le 13 avril 2022 Share Posté(e) le 13 avril 2022 (modifié) Salut @opheliecretu, Voici les étapes après avoir effectué le copier/coller du script dans le Bloc-notes : Ensuite, petite correction #3 Bureau et #4 Enregistrer Et pour finir : Ce qui va lancer l'exécution du script, et, après avoir presser une touche, ton ordinateur va redémarrer. Une fois redémarré, essaie une recherche de mise à jour via Windows Update. Tiens nous informé, et je serai de retour demain. A+ P.S.: @JarodAlpha, une courte lecture ici : https://community.lecrabeinfo.net/forums/topic/12503-nouvelle-règle-pour-les-interventions-en-dépannage-sur-les-forums-du-crabe/?_fromLogin=1 Modifié le 13 avril 2022 par Yves B. correction 1 2 Lien vers le commentaire
JarodAlpha Posté(e) le 13 avril 2022 Share Posté(e) le 13 avril 2022 Bonjour @Yves B. Reçu 5/5 Merci 1 Lien vers le commentaire
Messages recommandés