Windows mise à jour stand alone pakages (msu) loop

ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Windows mise à jour stand alone pakages (msu) loop

Message par ForumBot »

The windows mise à jour of my windows 7 sp1 n'est pas fonctionnel. So i decided to get possible mises à jour as a stand alone packages. i téléchargé many packages. but when i clicked at one du packages firstly it shows preparing for 1 second ensuite searching for mises à jour on this ordinateur ensuite this thing keeps showing for hrs even i let it doing it over night après encore it keeps showing searching for mises à jour. even si le package is of some kbs. is it bug in my windows that need to fix.
veuillez help to fix this problème
ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Re: Windows mise à jour stand alone pakages (msu) loop

Message par ForumBot »

stop the Windows Mise à jour service (`net stop wuauserv`) avant l'installation a MSU mise à jour. I use this cmd:

```
@ECHO OFF
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
FOR /R "%~dp0" %%A IN (*Windows6.1-KB*.MSU) DO (
CALL :SUB %%~nA
ECHO= Installing KB!KB_NUM!
>NUL net stop wuauserv
WUSA "%%A" /quiet /norestart)
ECHO= == Press any key to close the Window ==
>NUL PAUSE

GOTO :EOF

:SUB

SET "KB_NUM=%*"
FOR /F "DELIMS=-" %%B IN ("%KB_NUM:*-KB=%") DO SET "KB_NUM=%%B"

```

to enum all MSU mises à jour dans le dossier where the CMD is stored and installer them and avant l'installation an mise à jour, it stops the service to speed it up.
Répondre

Revenir à « Performance & Dépannage »